HomeSort by: relevance | last modified time | path
    Searched refs:_vcsock (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/resolv/
res_send.c 685 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) {
689 if (getpeername(statp->_vcsock,
697 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) {
698 if (statp->_vcsock >= 0)
701 statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM
704 fcntl(statp->_vcsock, F_SETFD, FD_CLOEXEC);
707 if (statp->_vcsock > highestFD) {
712 if (statp->_vcsock < 0) {
735 (void)setsockopt(statp->_vcsock, SOL_SOCKET, SO_NOSIGPIPE, &on,
739 if (connect(statp->_vcsock, nsap, nsaplen) < 0)
    [all...]
res_init.c 268 statp->_vcsock = -1;
812 if (statp->_vcsock >= 0) {
813 (void) close(statp->_vcsock);
814 statp->_vcsock = -1;
  /src/include/
resolv.h 181 int _vcsock; /*%< PRIVATE: for res_send VC i/o */ member in struct:__res_state

Completed in 15 milliseconds