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

Diff for /src/include/netdb.h between version 1.7 and 1.8

version 1.7, 1999/07/03 18:14:51 version 1.8, 1999/12/30 08:54:20
Line 148 
Line 148 
 #define NI_NOFQDN       4       /* return a short name if in the local domain */  #define NI_NOFQDN       4       /* return a short name if in the local domain */
 #define NI_NAMEREQD     8       /* fail if either host or service name is unknown */  #define NI_NAMEREQD     8       /* fail if either host or service name is unknown */
 #define NI_DGRAM        16      /* look up datagram service instead of stream */  #define NI_DGRAM        16      /* look up datagram service instead of stream */
   #define NI_WITHSCOPEID  32      /* KAME hack: attach scopeid to host portion */
   
 #define NI_MAXHOST      MAXHOSTNAMELEN  /* max host name returned by getnameinfo */  #define NI_MAXHOST      MAXHOSTNAMELEN  /* max host name returned by getnameinfo */
 #define NI_MAXSERV      32      /* max serv. name length returned by getnameinfo */  #define NI_MAXSERV      32      /* max serv. name length returned by getnameinfo */
   
   /*
    * Scope delimit character (KAME hack)
    */
   #define SCOPE_DELIMITER '@'
   
 #define EAI_BADFLAGS    -1      /* invalid value for ai_flags */  #define EAI_BADFLAGS    -1      /* invalid value for ai_flags */
 #define EAI_NONAME      -2      /* name or service is not known */  #define EAI_NONAME      -2      /* name or service is not known */
 #define EAI_AGAIN       -3      /* temporary failure in name resolution */  #define EAI_AGAIN       -3      /* temporary failure in name resolution */
Line 163 
Line 169 
 #define EAI_ADDRFAMILY  -9      /* address family for name not supported */  #define EAI_ADDRFAMILY  -9      /* address family for name not supported */
 #define EAI_MEMORY      -10     /* memory allocation failure */  #define EAI_MEMORY      -10     /* memory allocation failure */
 #define EAI_SYSTEM      -11     /* system error (code indicated in errno) */  #define EAI_SYSTEM      -11     /* system error (code indicated in errno) */
   #define EAI_BADHINTS    -12     /* invalid value for hints */
   #define EAI_PROTOCOL    -13     /* resolved protocol is unknown */
   
 struct addrinfo {  struct addrinfo {
         int ai_flags;           /* input flags */          int ai_flags;           /* input flags */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8