[BACK]Return to netdb.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/netdb.h between version 1.3 and 1.4

version 1.3, 1997/03/13 19:11:49 version 1.4, 1997/04/05 20:58:28
Line 93 
Line 93 
   
 /*  /*
  * Assumption here is that a network number   * Assumption here is that a network number
  * fits in an unsigned long -- probably a poor one.   * fits in an in_addr_t -- probably a poor one.
  */   */
 struct  netent {  struct  netent {
         char            *n_name;        /* official name of net */          char            *n_name;        /* official name of net */
         char            **n_aliases;    /* alias list */          char            **n_aliases;    /* alias list */
         int             n_addrtype;     /* net address type */          int             n_addrtype;     /* net address type */
         unsigned long   n_net;          /* network # */          in_addr_t       n_net;          /* network # */
 };  };
   
 struct  servent {  struct  servent {
Line 137 
Line 137 
 struct hostent  *gethostbyname __P((const char *));  struct hostent  *gethostbyname __P((const char *));
 struct hostent  *gethostbyname2 __P((const char *, int));  struct hostent  *gethostbyname2 __P((const char *, int));
 struct hostent  *gethostent __P((void));  struct hostent  *gethostent __P((void));
 struct netent   *getnetbyaddr __P((unsigned long, int));  struct netent   *getnetbyaddr __P((in_addr_t, int));
 struct netent   *getnetbyname __P((const char *));  struct netent   *getnetbyname __P((const char *));
 struct netent   *getnetent __P((void));  struct netent   *getnetent __P((void));
 struct protoent *getprotobyname __P((const char *));  struct protoent *getprotobyname __P((const char *));

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4