Lines Matching refs:hostent
401 struct hostent *host; /* Host from name service */ in httpAddrLookup()
677 struct hostent * /* O - Host entry */
716 cg->hostent.h_name = (char *)name; in httpGetHostByName()
717 cg->hostent.h_aliases = NULL; in httpGetHostByName()
718 cg->hostent.h_addrtype = AF_LOCAL; in httpGetHostByName()
719 cg->hostent.h_length = (int)strlen(name) + 1; in httpGetHostByName()
720 cg->hostent.h_addr_list = cg->ip_ptrs; in httpGetHostByName()
726 return (&cg->hostent); in httpGetHostByName()
753 cg->hostent.h_name = (char *)name; in httpGetHostByName()
754 cg->hostent.h_aliases = NULL; in httpGetHostByName()
755 cg->hostent.h_addrtype = AF_INET; in httpGetHostByName()
756 cg->hostent.h_length = 4; in httpGetHostByName()
757 cg->hostent.h_addr_list = cg->ip_ptrs; in httpGetHostByName()
763 return (&cg->hostent); in httpGetHostByName()
857 struct hostent *host; /* Host entry to get FQDN */ in httpGetHostname()