Searched refs:_vcsock (Results 1 – 3 of 3) sorted by relevance
/freebsd/lib/libc/resolv/ |
H A D | res_send.c | 640 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) { in send_vc() 644 if (_getpeername(statp->_vcsock, in send_vc() 652 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) { in send_vc() 653 if (statp->_vcsock >= 0) in send_vc() 656 statp->_vcsock = _socket(nsap->sa_family, SOCK_STREAM | in send_vc() 659 if (statp->_vcsock > highestFD) { in send_vc() 664 if (statp->_vcsock < 0) { in send_vc() 687 (void)_setsockopt(statp->_vcsock, SOL_SOCKET, SO_NOSIGPIPE, &on, in send_vc() 691 if (_connect(statp->_vcsock, nsap, nsaplen) < 0) { in send_vc() 708 if (_writev(statp->_vcsock, iov, 2) != (INT16SZ + buflen)) { in send_vc() [all …]
|
H A D | res_init.c | 217 statp->_vcsock = -1; in __res_vinit() 797 if (statp->_vcsock >= 0) { in res_nclose() 798 (void) _close(statp->_vcsock); in res_nclose() 799 statp->_vcsock = -1; in res_nclose()
|
/freebsd/include/ |
H A D | resolv.h | 178 int _vcsock; /*%< PRIVATE: for res_send VC i/o */ member
|