netdb.h 25 KB

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