Searched defs:hostent (Results 1 – 3 of 3) sorted by relevance
98 struct hostent { struct99 char *h_name; /* official name of host */100 char **h_aliases; /* alias list */101 int h_addrtype; /* host address type */102 int h_length; /* length of address */103 char **h_addr_list; /* list of addresses from name server */104 char *h_addr; /* address, for backward compatibility */106 char *__host_addrs[MAXADDRS];107 char *__host_aliases[MAXALIASES];108 unsigned int __host_addr[4];
390 typedef struct hostent hostent; typedef505 hostent * hostent; member
991 struct hostent* hostent = gethostbyname(hostname); in HandleConnect() local