Searched refs:_vcsock (Results 1 – 3 of 3) sorted by relevance
/titanic_41/usr/src/lib/libresolv2/common/resolv/ |
H A D | res_send.c | 628 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) { in send_vc() 632 if (getpeername(statp->_vcsock, in send_vc() 640 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) { in send_vc() 641 if (statp->_vcsock >= 0) in send_vc() 644 statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM, 0); in send_vc() 645 if (statp->_vcsock > highestFD) { in send_vc() 649 if (statp->_vcsock < 0) { in send_vc() 672 (void)setsockopt(statp->_vcsock, SOL_SOCKET, SO_NOSIGPIPE, &on, in send_vc() 676 if (connect(statp->_vcsock, nsap, nsaplen) < 0) { in send_vc() 693 if (writev(statp->_vcsock, iov, 2) != (INT16SZ + buflen)) { in send_vc() [all …]
|
H A D | res_init.c | 238 statp->_vcsock = -1; in __res_vinit() 825 if (statp->_vcsock >= 0) { in res_nclose() 826 (void) close(statp->_vcsock); in res_nclose() 827 statp->_vcsock = -1; in res_nclose()
|
/titanic_41/usr/src/head/ |
H A D | resolv.h | 214 int _vcsock; /* PRIVATE: for res_send VC i/o */ member
|