Searched refs:_vcsock (Results 1 – 3 of 3) sorted by relevance
| /freebsd/lib/libc/resolv/ |
| H A D | res_send.c | 635 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) { in send_vc() 639 if (_getpeername(statp->_vcsock, in send_vc() 647 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) { in send_vc() 648 if (statp->_vcsock >= 0) in send_vc() 651 statp->_vcsock = _socket(nsap->sa_family, SOCK_STREAM | in send_vc() 654 if (statp->_vcsock > highestFD) { in send_vc() 659 if (statp->_vcsock < 0) { in send_vc() 682 (void)_setsockopt(statp->_vcsock, SOL_SOCKET, SO_NOSIGPIPE, &on, in send_vc() 686 if (_connect(statp->_vcsock, nsap, nsaplen) < 0) { in send_vc() 703 if (_writev(statp->_vcsock, iov, 2) != (INT16SZ + buflen)) { in send_vc() [all …]
|
| H A D | res_init.c | 189 statp->_vcsock = -1; in __res_vinit() 731 if (statp->_vcsock >= 0) { in res_nclose() 732 (void) _close(statp->_vcsock); in res_nclose() 733 statp->_vcsock = -1; in res_nclose()
|
| /freebsd/include/ |
| H A D | resolv.h | 178 int _vcsock; /*%< PRIVATE: for res_send VC i/o */ member
|