netdb.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:26k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.   /* Copyright (C) 1996-2002, 2003, 2004 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    The GNU C Library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Lesser General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2.1 of the License, or (at your option) any later version.
  7.    The GNU C Library is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Lesser General Public License for more details.
  11.    You should have received a copy of the GNU Lesser General Public
  12.    License along with the GNU C Library; if not, write to the Free
  13.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14.    02111-1307 USA.  */
  15. /* All data returned by the network data base library are supplied in
  16.    host order and returned in network order (suitable for use in
  17.    system calls).  */
  18. #ifndef _NETDB_H
  19. #define _NETDB_H 1
  20. #include <features.h>
  21. #include <netinet/in.h>
  22. #include <stdint.h>
  23. #ifdef __USE_MISC
  24. /* This is necessary to make this include file properly replace the
  25.    Sun version.  */
  26. # include <rpc/netdb.h>
  27. #endif
  28. #ifdef __USE_GNU
  29. # define __need_sigevent_t
  30. # include <bits/siginfo.h>
  31. # define __need_timespec
  32. # include <time.h>
  33. #endif
  34. #include <bits/netdb.h>
  35. /* Absolute file name for network data base files.  */
  36. #define _PATH_HEQUIV "/etc/hosts.equiv"
  37. #define _PATH_HOSTS "/etc/hosts"
  38. #define _PATH_NETWORKS "/etc/networks"
  39. #define _PATH_NSSWITCH_CONF "/etc/nsswitch.conf"
  40. #define _PATH_PROTOCOLS "/etc/protocols"
  41. #define _PATH_SERVICES "/etc/services"
  42. __BEGIN_DECLS
  43. /* Error status for non-reentrant lookup functions.
  44.    We use a macro to access always the thread-specific `h_errno' variable.  */
  45. #define h_errno (*__h_errno_location ())
  46. /* Function to get address of global `h_errno' variable.  */
  47. extern int *__h_errno_location (void) __THROW __attribute__ ((__const__));
  48. /* Possible values left in `h_errno'.  */
  49. #define NETDB_INTERNAL -1 /* See errno.  */
  50. #define NETDB_SUCCESS 0 /* No problem.  */
  51. #define HOST_NOT_FOUND 1 /* Authoritative Answer Host not found.  */
  52. #define TRY_AGAIN 2 /* Non-Authoritative Host not found,
  53.    or SERVERFAIL.  */
  54. #define NO_RECOVERY 3 /* Non recoverable errors, FORMERR, REFUSED,
  55.    NOTIMP.  */
  56. #define NO_DATA 4 /* Valid name, no data record of requested
  57.    type.  */
  58. #define NO_ADDRESS NO_DATA /* No address, look for MX record.  */
  59. #ifdef __USE_XOPEN2K
  60. /* Highest reserved Internet port number.  */
  61. # define IPPORT_RESERVED 1024
  62. #endif
  63. #ifdef __USE_GNU
  64. /* Scope delimiter for getaddrinfo(), getnameinfo().  */
  65. # define SCOPE_DELIMITER '%'
  66. #endif
  67. /* Print error indicated by `h_errno' variable on standard error.  STR
  68.    if non-null is printed before the error string.  */
  69. extern void herror (__const char *__str) __THROW;
  70. /* Return string associated with error ERR_NUM.  */
  71. extern __const char *hstrerror (int __err_num) __THROW;
  72. /* Description of data base entry for a single host.  */
  73. struct hostent
  74. {
  75.   char *h_name; /* Official name of host.  */
  76.   char **h_aliases; /* Alias list.  */
  77.   int h_addrtype; /* Host address type.  */
  78.   int h_length; /* Length of address.  */
  79.   char **h_addr_list; /* List of addresses from name server.  */
  80. #define h_addr h_addr_list[0] /* Address, for backward compatibility.  */
  81. };
  82. /* Open host data base files and mark them as staying open even after
  83.    a later search if STAY_OPEN is non-zero.
  84.    This function is a possible cancellation point and therefore not
  85.    marked with __THROW.  */
  86. extern void sethostent (int __stay_open);
  87. /* Close host data base files and clear `stay open' flag.
  88.    This function is a possible cancellation point and therefore not
  89.    marked with __THROW.  */
  90. extern void endhostent (void);
  91. /* Get next entry from host data base file.  Open data base if
  92.    necessary.
  93.    This function is a possible cancellation point and therefore not
  94.    marked with __THROW.  */
  95. extern struct hostent *gethostent (void);
  96. /* Return entry from host data base which address match ADDR with
  97.    length LEN and type TYPE.
  98.    This function is a possible cancellation point and therefore not
  99.    marked with __THROW.  */
  100. extern struct hostent *gethostbyaddr (__const void *__addr, __socklen_t __len,
  101.       int __type);
  102. /* Return entry from host data base for host with NAME.
  103.    This function is a possible cancellation point and therefore not
  104.    marked with __THROW.  */
  105. extern struct hostent *gethostbyname (__const char *__name);
  106. #ifdef __USE_MISC
  107. /* Return entry from host data base for host with NAME.  AF must be
  108.    set to the address type which is `AF_INET' for IPv4 or `AF_INET6'
  109.    for IPv6.
  110.    This function is not part of POSIX and therefore no official
  111.    cancellation point.  But due to similarity with an POSIX interface
  112.    or due to the implementation it is a cancellation point and
  113.    therefore not marked with __THROW.  */
  114. extern struct hostent *gethostbyname2 (__const char *__name, int __af);
  115. /* Reentrant versions of the functions above.  The additional
  116.    arguments specify a buffer of BUFLEN starting at BUF.  The last
  117.    argument is a pointer to a variable which gets the value which
  118.    would be stored in the global variable `herrno' by the
  119.    non-reentrant functions.
  120.    These functions are not part of POSIX and therefore no official
  121.    cancellation point.  But due to similarity with an POSIX interface
  122.    or due to the implementation they are cancellation points and
  123.    therefore not marked with __THROW.  */
  124. extern int gethostent_r (struct hostent *__restrict __result_buf,
  125.  char *__restrict __buf, size_t __buflen,
  126.  struct hostent **__restrict __result,
  127.  int *__restrict __h_errnop);
  128. extern int gethostbyaddr_r (__const void *__restrict __addr, __socklen_t __len,
  129.     int __type,
  130.     struct hostent *__restrict __result_buf,
  131.     char *__restrict __buf, size_t __buflen,
  132.     struct hostent **__restrict __result,
  133.     int *__restrict __h_errnop);
  134. extern int gethostbyname_r (__const char *__restrict __name,
  135.     struct hostent *__restrict __result_buf,
  136.     char *__restrict __buf, size_t __buflen,
  137.     struct hostent **__restrict __result,
  138.     int *__restrict __h_errnop);
  139. extern int gethostbyname2_r (__const char *__restrict __name, int __af,
  140.      struct hostent *__restrict __result_buf,
  141.      char *__restrict __buf, size_t __buflen,
  142.      struct hostent **__restrict __result,
  143.      int *__restrict __h_errnop);
  144. #endif /* misc */
  145. /* Open network data base files and mark them as staying open even
  146.    after a later search if STAY_OPEN is non-zero.
  147.    This function is a possible cancellation point and therefore not
  148.    marked with __THROW.  */
  149. extern void setnetent (int __stay_open);
  150. /* Close network data base files and clear `stay open' flag.
  151.    This function is a possible cancellation point and therefore not
  152.    marked with __THROW.  */
  153. extern void endnetent (void);
  154. /* Get next entry from network data base file.  Open data base if
  155.    necessary.
  156.    This function is a possible cancellation point and therefore not
  157.    marked with __THROW.  */
  158. extern struct netent *getnetent (void);
  159. /* Return entry from network data base which address match NET and
  160.    type TYPE.
  161.    This function is a possible cancellation point and therefore not
  162.    marked with __THROW.  */
  163. extern struct netent *getnetbyaddr (uint32_t __net, int __type);
  164. /* Return entry from network data base for network with NAME.
  165.    This function is a possible cancellation point and therefore not
  166.    marked with __THROW.  */
  167. extern struct netent *getnetbyname (__const char *__name);
  168. #ifdef __USE_MISC
  169. /* Reentrant versions of the functions above.  The additional
  170.    arguments specify a buffer of BUFLEN starting at BUF.  The last
  171.    argument is a pointer to a variable which gets the value which
  172.    would be stored in the global variable `herrno' by the
  173.    non-reentrant functions.
  174.    These functions are not part of POSIX and therefore no official
  175.    cancellation point.  But due to similarity with an POSIX interface
  176.    or due to the implementation they are cancellation points and
  177.    therefore not marked with __THROW.  */
  178. extern int getnetent_r (struct netent *__restrict __result_buf,
  179. char *__restrict __buf, size_t __buflen,
  180. struct netent **__restrict __result,
  181. int *__restrict __h_errnop);
  182. extern int getnetbyaddr_r (uint32_t __net, int __type,
  183.    struct netent *__restrict __result_buf,
  184.    char *__restrict __buf, size_t __buflen,
  185.    struct netent **__restrict __result,
  186.    int *__restrict __h_errnop);
  187. extern int getnetbyname_r (__const char *__restrict __name,
  188.    struct netent *__restrict __result_buf,
  189.    char *__restrict __buf, size_t __buflen,
  190.    struct netent **__restrict __result,
  191.    int *__restrict __h_errnop);
  192. #endif /* misc */
  193. /* Description of data base entry for a single service.  */
  194. struct servent
  195. {
  196.   char *s_name; /* Official service name.  */
  197.   char **s_aliases; /* Alias list.  */
  198.   int s_port; /* Port number.  */
  199.   char *s_proto; /* Protocol to use.  */
  200. };
  201. /* Open service data base files and mark them as staying open even
  202.    after a later search if STAY_OPEN is non-zero.
  203.    This function is a possible cancellation point and therefore not
  204.    marked with __THROW.  */
  205. extern void setservent (int __stay_open);
  206. /* Close service data base files and clear `stay open' flag.
  207.    This function is a possible cancellation point and therefore not
  208.    marked with __THROW.  */
  209. extern void endservent (void);
  210. /* Get next entry from service data base file.  Open data base if
  211.    necessary.
  212.    This function is a possible cancellation point and therefore not
  213.    marked with __THROW.  */
  214. extern struct servent *getservent (void);
  215. /* Return entry from network data base for network with NAME and
  216.    protocol PROTO.
  217.    This function is a possible cancellation point and therefore not
  218.    marked with __THROW.  */
  219. extern struct servent *getservbyname (__const char *__name,
  220.       __const char *__proto);
  221. /* Return entry from service data base which matches port PORT and
  222.    protocol PROTO.
  223.    This function is a possible cancellation point and therefore not
  224.    marked with __THROW.  */
  225. extern struct servent *getservbyport (int __port, __const char *__proto);
  226. #ifdef __USE_MISC
  227. /* Reentrant versions of the functions above.  The additional
  228.    arguments specify a buffer of BUFLEN starting at BUF.
  229.    These functions are not part of POSIX and therefore no official
  230.    cancellation point.  But due to similarity with an POSIX interface
  231.    or due to the implementation they are cancellation points and
  232.    therefore not marked with __THROW.  */
  233. extern int getservent_r (struct servent *__restrict __result_buf,
  234.  char *__restrict __buf, size_t __buflen,
  235.  struct servent **__restrict __result);
  236. extern int getservbyname_r (__const char *__restrict __name,
  237.     __const char *__restrict __proto,
  238.     struct servent *__restrict __result_buf,
  239.     char *__restrict __buf, size_t __buflen,
  240.     struct servent **__restrict __result);
  241. extern int getservbyport_r (int __port, __const char *__restrict __proto,
  242.     struct servent *__restrict __result_buf,
  243.     char *__restrict __buf, size_t __buflen,
  244.     struct servent **__restrict __result);
  245. #endif /* misc */
  246. /* Description of data base entry for a single service.  */
  247. struct protoent
  248. {
  249.   char *p_name; /* Official protocol name.  */
  250.   char **p_aliases; /* Alias list.  */
  251.   int p_proto; /* Protocol number.  */
  252. };
  253. /* Open protocol data base files and mark them as staying open even
  254.    after a later search if STAY_OPEN is non-zero.
  255.    This function is a possible cancellation point and therefore not
  256.    marked with __THROW.  */
  257. extern void setprotoent (int __stay_open);
  258. /* Close protocol data base files and clear `stay open' flag.
  259.    This function is a possible cancellation point and therefore not
  260.    marked with __THROW.  */
  261. extern void endprotoent (void);
  262. /* Get next entry from protocol data base file.  Open data base if
  263.    necessary.
  264.    This function is a possible cancellation point and therefore not
  265.    marked with __THROW.  */
  266. extern struct protoent *getprotoent (void);
  267. /* Return entry from protocol data base for network with NAME.
  268.    This function is a possible cancellation point and therefore not
  269.    marked with __THROW.  */
  270. extern struct protoent *getprotobyname (__const char *__name);
  271. /* Return entry from protocol data base which number is PROTO.
  272.    This function is a possible cancellation point and therefore not
  273.    marked with __THROW.  */
  274. extern struct protoent *getprotobynumber (int __proto);
  275. #ifdef __USE_MISC
  276. /* Reentrant versions of the functions above.  The additional
  277.    arguments specify a buffer of BUFLEN starting at BUF.
  278.    These functions are not part of POSIX and therefore no official
  279.    cancellation point.  But due to similarity with an POSIX interface
  280.    or due to the implementation they are cancellation points and
  281.    therefore not marked with __THROW.  */
  282. extern int getprotoent_r (struct protoent *__restrict __result_buf,
  283.   char *__restrict __buf, size_t __buflen,
  284.   struct protoent **__restrict __result);
  285. extern int getprotobyname_r (__const char *__restrict __name,
  286.      struct protoent *__restrict __result_buf,
  287.      char *__restrict __buf, size_t __buflen,
  288.      struct protoent **__restrict __result);
  289. extern int getprotobynumber_r (int __proto,
  290.        struct protoent *__restrict __result_buf,
  291.        char *__restrict __buf, size_t __buflen,
  292.        struct protoent **__restrict __result);
  293. /* Establish network group NETGROUP for enumeration.
  294.    This function is not part of POSIX and therefore no official
  295.    cancellation point.  But due to similarity with an POSIX interface
  296.    or due to the implementation it is a cancellation point and
  297.    therefore not marked with __THROW.  */
  298. extern int setnetgrent (__const char *__netgroup);
  299. /* Free all space allocated by previous `setnetgrent' call.
  300.    This function is not part of POSIX and therefore no official
  301.    cancellation point.  But due to similarity with an POSIX interface
  302.    or due to the implementation it is a cancellation point and
  303.    therefore not marked with __THROW.  */
  304. extern void endnetgrent (void);
  305. /* Get next member of netgroup established by last `setnetgrent' call
  306.    and return pointers to elements in HOSTP, USERP, and DOMAINP.
  307.    This function is not part of POSIX and therefore no official
  308.    cancellation point.  But due to similarity with an POSIX interface
  309.    or due to the implementation it is a cancellation point and
  310.    therefore not marked with __THROW.  */
  311. extern int getnetgrent (char **__restrict __hostp,
  312. char **__restrict __userp,
  313. char **__restrict __domainp);
  314. /* Test whether NETGROUP contains the triple (HOST,USER,DOMAIN).
  315.    This function is not part of POSIX and therefore no official
  316.    cancellation point.  But due to similarity with an POSIX interface
  317.    or due to the implementation it is a cancellation point and
  318.    therefore not marked with __THROW.  */
  319. extern int innetgr (__const char *__netgroup, __const char *__host,
  320.     __const char *__user, __const char *domain);
  321. /* Reentrant version of `getnetgrent' where result is placed in BUFFER.
  322.    This function is not part of POSIX and therefore no official
  323.    cancellation point.  But due to similarity with an POSIX interface
  324.    or due to the implementation it is a cancellation point and
  325.    therefore not marked with __THROW.  */
  326. extern int getnetgrent_r (char **__restrict __hostp,
  327.   char **__restrict __userp,
  328.   char **__restrict __domainp,
  329.   char *__restrict __buffer, size_t __buflen);
  330. #endif /* misc */
  331. #ifdef __USE_BSD
  332. /* Call `rshd' at port RPORT on remote machine *AHOST to execute CMD.
  333.    The local user is LOCUSER, on the remote machine the command is
  334.    executed as REMUSER.  In *FD2P the descriptor to the socket for the
  335.    connection is returned.  The caller must have the right to use a
  336.    reserved port.  When the function returns *AHOST contains the
  337.    official host name.
  338.    This function is not part of POSIX and therefore no official
  339.    cancellation point.  But due to similarity with an POSIX interface
  340.    or due to the implementation it is a cancellation point and
  341.    therefore not marked with __THROW.  */
  342. extern int rcmd (char **__restrict __ahost, unsigned short int __rport,
  343.  __const char *__restrict __locuser,
  344.  __const char *__restrict __remuser,
  345.  __const char *__restrict __cmd, int *__restrict __fd2p);
  346. /* This is the equivalent function where the protocol can be selected
  347.    and which therefore can be used for IPv6.
  348.    This function is not part of POSIX and therefore no official
  349.    cancellation point.  But due to similarity with an POSIX interface
  350.    or due to the implementation it is a cancellation point and
  351.    therefore not marked with __THROW.  */
  352. extern int rcmd_af (char **__restrict __ahost, unsigned short int __rport,
  353.     __const char *__restrict __locuser,
  354.     __const char *__restrict __remuser,
  355.     __const char *__restrict __cmd, int *__restrict __fd2p,
  356.     sa_family_t __af);
  357. /* Call `rexecd' at port RPORT on remote machine *AHOST to execute
  358.    CMD.  The process runs at the remote machine using the ID of user
  359.    NAME whose cleartext password is PASSWD.  In *FD2P the descriptor
  360.    to the socket for the connection is returned.  When the function
  361.    returns *AHOST contains the official host name.
  362.    This function is not part of POSIX and therefore no official
  363.    cancellation point.  But due to similarity with an POSIX interface
  364.    or due to the implementation it is a cancellation point and
  365.    therefore not marked with __THROW.  */
  366. extern int rexec (char **__restrict __ahost, int __rport,
  367.   __const char *__restrict __name,
  368.   __const char *__restrict __pass,
  369.   __const char *__restrict __cmd, int *__restrict __fd2p);
  370. /* This is the equivalent function where the protocol can be selected
  371.    and which therefore can be used for IPv6.
  372.    This function is not part of POSIX and therefore no official
  373.    cancellation point.  But due to similarity with an POSIX interface
  374.    or due to the implementation it is a cancellation point and
  375.    therefore not marked with __THROW.  */
  376. extern int rexec_af (char **__restrict __ahost, int __rport,
  377.      __const char *__restrict __name,
  378.      __const char *__restrict __pass,
  379.      __const char *__restrict __cmd, int *__restrict __fd2p,
  380.      sa_family_t __af);
  381. /* Check whether user REMUSER on system RHOST is allowed to login as LOCUSER.
  382.    If SUSER is not zero the user tries to become superuser.  Return 0 if
  383.    it is possible.
  384.    This function is not part of POSIX and therefore no official
  385.    cancellation point.  But due to similarity with an POSIX interface
  386.    or due to the implementation it is a cancellation point and
  387.    therefore not marked with __THROW.  */
  388. extern int ruserok (__const char *__rhost, int __suser,
  389.     __const char *__remuser, __const char *__locuser);
  390. /* This is the equivalent function where the protocol can be selected
  391.    and which therefore can be used for IPv6.
  392.    This function is not part of POSIX and therefore no official
  393.    cancellation point.  But due to similarity with an POSIX interface
  394.    or due to the implementation it is a cancellation point and
  395.    therefore not marked with __THROW.  */
  396. extern int ruserok_af (__const char *__rhost, int __suser,
  397.        __const char *__remuser, __const char *__locuser,
  398.        sa_family_t __af);
  399. /* Try to allocate reserved port, returning a descriptor for a socket opened
  400.    at this port or -1 if unsuccessful.  The search for an available port
  401.    will start at ALPORT and continues with lower numbers.
  402.    This function is not part of POSIX and therefore no official
  403.    cancellation point.  But due to similarity with an POSIX interface
  404.    or due to the implementation it is a cancellation point and
  405.    therefore not marked with __THROW.  */
  406. extern int rresvport (int *__alport);
  407. /* This is the equivalent function where the protocol can be selected
  408.    and which therefore can be used for IPv6.
  409.    This function is not part of POSIX and therefore no official
  410.    cancellation point.  But due to similarity with an POSIX interface
  411.    or due to the implementation it is a cancellation point and
  412.    therefore not marked with __THROW.  */
  413. extern int rresvport_af (int *__alport, sa_family_t __af);
  414. #endif
  415. /* Extension from POSIX.1g.  */
  416. #ifdef __USE_POSIX
  417. /* Structure to contain information about address of a service provider.  */
  418. struct addrinfo
  419. {
  420.   int ai_flags; /* Input flags.  */
  421.   int ai_family; /* Protocol family for socket.  */
  422.   int ai_socktype; /* Socket type.  */
  423.   int ai_protocol; /* Protocol for socket.  */
  424.   socklen_t ai_addrlen; /* Length of socket address.  */
  425.   struct sockaddr *ai_addr; /* Socket address for socket.  */
  426.   char *ai_canonname; /* Canonical name for service location.  */
  427.   struct addrinfo *ai_next; /* Pointer to next in list.  */
  428. };
  429. # ifdef __USE_GNU
  430. /* Structure used as control block for asynchronous lookup.  */
  431. struct gaicb
  432. {
  433.   const char *ar_name; /* Name to look up.  */
  434.   const char *ar_service; /* Service name.  */
  435.   const struct addrinfo *ar_request; /* Additional request specification.  */
  436.   struct addrinfo *ar_result; /* Pointer to result.  */
  437.   /* The following are internal elements.  */
  438.   int __return;
  439.   int __unused[5];
  440. };
  441. /* Lookup mode.  */
  442. #  define GAI_WAIT 0
  443. #  define GAI_NOWAIT 1
  444. # endif
  445. /* Possible values for `ai_flags' field in `addrinfo' structure.  */
  446. # define AI_PASSIVE 0x0001 /* Socket address is intended for `bind'.  */
  447. # define AI_CANONNAME 0x0002 /* Request for canonical name.  */
  448. # define AI_NUMERICHOST 0x0004 /* Don't use name resolution.  */
  449. # define AI_V4MAPPED 0x0008 /* IPv4 mapped addresses are acceptable.  */
  450. # define AI_ALL 0x0010 /* Return IPv4 mapped and IPv6 addresses.  */
  451. # define AI_ADDRCONFIG 0x0020 /* Use configuration of this host to choose
  452.    returned address type..  */
  453. # ifdef __USE_GNU
  454. #  define AI_IDN 0x0040 /* IDN encode input (assuming it is encoded
  455.    in the current locale's character set)
  456.    before looking it up. */
  457. #  define AI_CANONIDN 0x0080 /* Translate canonical name from IDN format. */
  458. #  define AI_IDN_ALLOW_UNASSIGNED 0x0100 /* Don't reject unassigned Unicode
  459.     code points.  */
  460. #  define AI_IDN_USE_STD3_ASCII_RULES 0x0200 /* Validate strings according to
  461. STD3 rules.  */
  462. # endif
  463. # define AI_NUMERICSERV 0x0400 /* Don't use name resolution.  */
  464. /* Error values for `getaddrinfo' function.  */
  465. # define EAI_BADFLAGS   -1 /* Invalid value for `ai_flags' field.  */
  466. # define EAI_NONAME   -2 /* NAME or SERVICE is unknown.  */
  467. # define EAI_AGAIN   -3 /* Temporary failure in name resolution.  */
  468. # define EAI_FAIL   -4 /* Non-recoverable failure in name res.  */
  469. # define EAI_NODATA   -5 /* No address associated with NAME.  */
  470. # define EAI_FAMILY   -6 /* `ai_family' not supported.  */
  471. # define EAI_SOCKTYPE   -7 /* `ai_socktype' not supported.  */
  472. # define EAI_SERVICE   -8 /* SERVICE not supported for `ai_socktype'.  */
  473. # define EAI_ADDRFAMILY   -9 /* Address family for NAME not supported.  */
  474. # define EAI_MEMORY   -10 /* Memory allocation failure.  */
  475. # define EAI_SYSTEM   -11 /* System error returned in `errno'.  */
  476. # define EAI_OVERFLOW   -12 /* Argument buffer overflow.  */
  477. # ifdef __USE_GNU
  478. #  define EAI_INPROGRESS  -100 /* Processing request in progress.  */
  479. #  define EAI_CANCELED   -101 /* Request canceled.  */
  480. #  define EAI_NOTCANCELED -102 /* Request not canceled.  */
  481. #  define EAI_ALLDONE   -103 /* All requests done.  */
  482. #  define EAI_INTR   -104 /* Interrupted by a signal.  */
  483. #  define EAI_IDN_ENCODE  -105 /* IDN encoding failed.  */
  484. # endif
  485. # define NI_MAXHOST      1025
  486. # define NI_MAXSERV      32
  487. # define NI_NUMERICHOST 1 /* Don't try to look up hostname.  */
  488. # define NI_NUMERICSERV 2 /* Don't convert port number to name.  */
  489. # define NI_NOFQDN 4 /* Only return nodename portion.  */
  490. # define NI_NAMEREQD 8 /* Don't return numeric addresses.  */
  491. # define NI_DGRAM 16 /* Look up UDP service rather than TCP.  */
  492. # ifdef __USE_GNU
  493. #  define NI_IDN 32 /* Convert name from IDN format.  */
  494. #  define NI_IDN_ALLOW_UNASSIGNED 64 /* Don't reject unassigned Unicode
  495. code points.  */
  496. #  define NI_IDN_USE_STD3_ASCII_RULES 128 /* Validate strings according to
  497.      STD3 rules.  */
  498. # endif
  499. /* Translate name of a service location and/or a service name to set of
  500.    socket addresses.
  501.    This function is a possible cancellation point and therefore not
  502.    marked with __THROW.  */
  503. extern int getaddrinfo (__const char *__restrict __name,
  504. __const char *__restrict __service,
  505. __const struct addrinfo *__restrict __req,
  506. struct addrinfo **__restrict __pai);
  507. /* Free `addrinfo' structure AI including associated storage.  */
  508. extern void freeaddrinfo (struct addrinfo *__ai) __THROW;
  509. /* Convert error return from getaddrinfo() to a string.  */
  510. extern __const char *gai_strerror (int __ecode) __THROW;
  511. /* Translate a socket address to a location and service name.
  512.    This function is a possible cancellation point and therefore not
  513.    marked with __THROW.  */
  514. extern int getnameinfo (__const struct sockaddr *__restrict __sa,
  515. socklen_t __salen, char *__restrict __host,
  516. socklen_t __hostlen, char *__restrict __serv,
  517. socklen_t __servlen, unsigned int __flags);
  518. #endif /* POSIX */
  519. #ifdef __USE_GNU
  520. /* Enqueue ENT requests from the LIST.  If MODE is GAI_WAIT wait until all
  521.    requests are handled.  If WAIT is GAI_NOWAIT return immediately after
  522.    queueing the requests and signal completion according to SIG.
  523.    This function is not part of POSIX and therefore no official
  524.    cancellation point.  But due to similarity with an POSIX interface
  525.    or due to the implementation it is a cancellation point and
  526.    therefore not marked with __THROW.  */
  527. extern int getaddrinfo_a (int __mode, struct gaicb *__list[__restrict_arr],
  528.   int __ent, struct sigevent *__restrict __sig);
  529. /* Suspend execution of the thread until at least one of the ENT requests
  530.    in LIST is handled.  If TIMEOUT is not a null pointer it specifies the
  531.    longest time the function keeps waiting before returning with an error.
  532.    This function is not part of POSIX and therefore no official
  533.    cancellation point.  But due to similarity with an POSIX interface
  534.    or due to the implementation it is a cancellation point and
  535.    therefore not marked with __THROW.  */
  536. extern int gai_suspend (__const struct gaicb *__const __list[], int __ent,
  537. __const struct timespec *__timeout);
  538. /* Get the error status of the request REQ.  */
  539. extern int gai_error (struct gaicb *__req) __THROW;
  540. /* Cancel the requests associated with GAICBP.  */
  541. extern int gai_cancel (struct gaicb *__gaicbp) __THROW;
  542. #endif /* GNU */
  543. __END_DECLS
  544. #endif /* netdb.h */