netdb.h 27 KB

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