Searched refs:_vcsock (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/lib/libc/resolv/
H A Dres_send.c647 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) {
651 if (_getpeername(statp->_vcsock,
659 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) {
660 if (statp->_vcsock >= 0)
663 statp->_vcsock = _socket(nsap->sa_family, SOCK_STREAM, 0);
665 if (statp->_vcsock > highestFD) {
670 if (statp->_vcsock < 0) {
693 (void)_setsockopt(statp->_vcsock, SOL_SOCKET, SO_NOSIGPIPE, &on,
697 if (_connect(statp->_vcsock, nsap, nsaplen) < 0) {
714 if (_writev(statp->_vcsock, io
[all...]
H A Dres_init.c212 statp->_vcsock = -1;
737 if (statp->_vcsock >= 0) {
738 (void) _close(statp->_vcsock);
739 statp->_vcsock = -1;
/freebsd-9.3-release/include/
H A Dresolv.h177 int _vcsock; /*%< PRIVATE: for res_send VC i/o */ member in struct:__res_state

Completed in 61 milliseconds