Aggiornamenti + alcune sockopt di IP
[gapil.git] / listati / hostent.h
1 struct hostent {
2         char    *h_name;        /* official name of host */
3         char    **h_aliases;    /* alias list */
4         int     h_addrtype;     /* host address type */
5         int     h_length;       /* length of address */
6         char    **h_addr_list;  /* list of addresses */
7 }
8 #define h_addr  h_addr_list[0]  /* for backward compatibility */