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

Diff for /src/include/netdb.h between version 1.31 and 1.32

version 1.31, 2012/09/15 00:47:08 version 1.32, 2014/04/28 21:38:59
Line 167 
Line 167 
 #define AI_EXT          8       /* enable non-portable extensions */  #define AI_EXT          8       /* enable non-portable extensions */
 #define AI_NUMERICSERV  16      /* don't ever try servname lookup */  #define AI_NUMERICSERV  16      /* don't ever try servname lookup */
 #define AI_FQDN         32      /* return the FQDN that was resolved */  #define AI_FQDN         32      /* return the FQDN that was resolved */
   #define AI_ADDRCONFIG   64      /* return configured address families only */
 /* valid flags for addrinfo */  /* valid flags for addrinfo */
 #define AI_MASK \  #define AI_MASK \
     (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV | AI_FQDN)      (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV | AI_FQDN | \
        AI_ADDRCONFIG)
   
 #define NI_NUMERICHOST  1       /* return the host address, not the name */  #define NI_NUMERICHOST  1       /* return the host address, not the name */
 #define NI_NUMERICSERV  2       /* return the service address, not the name */  #define NI_NUMERICSERV  2       /* return the service address, not the name */

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32