netdb.h 26 KB

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