1#ifndef _RESOLV_H_
2
3# ifndef _ISOMAC
4# include <stdbool.h>
5# define RES_SET_H_ERRNO(r,x) \
6 do \
7 { \
8 (r)->res_h_errno = x; \
9 __set_h_errno(x); \
10 } \
11 while (0)
12# endif
13
14#include <resolv/resolv.h>
15
16# if defined _RESOLV_H_ && !defined _ISOMAC
17
18# if IS_IN (libc)
19# define __resp __libc_resp
20# endif
21extern __thread struct __res_state *__resp attribute_tls_model_ie;
22# undef _res
23# define _res (*__resp)
24
25/* Now define the internal interfaces. */
26extern int __res_vinit (res_state, int) attribute_hidden;
27extern void _sethtent (int);
28extern struct hostent *_gethtent (void);
29extern struct hostent *_gethtbyname (const char *__name);
30extern struct hostent *_gethtbyname2 (const char *__name, int __af);
31struct hostent *_gethtbyaddr (const char *addr, size_t __len, int __af);
32extern uint32_t _getlong (const unsigned char *__src);
33extern uint16_t _getshort (const unsigned char *__src);
34extern int res_ourserver_p (const res_state __statp,
35 const struct sockaddr_in6 *__inp);
36extern void __res_iclose (res_state statp, bool free_addr);
37libc_hidden_proto (__res_ninit)
38libc_hidden_proto (__res_nclose)
39libc_hidden_proto (__res_iclose)
40libc_hidden_proto (__res_randomid)
41libc_hidden_proto (__res_state)
42
43libresolv_hidden_proto (_sethtent)
44libresolv_hidden_proto (_gethtent)
45libresolv_hidden_proto (_gethtbyaddr)
46libresolv_hidden_proto (_gethtbyname2)
47libresolv_hidden_proto (__dn_expand)
48libresolv_hidden_proto (__dn_comp)
49libresolv_hidden_proto (__dn_skipname)
50libresolv_hidden_proto (__res_hnok)
51libresolv_hidden_proto (__res_dnok)
52libresolv_hidden_proto (__putlong)
53libresolv_hidden_proto (__putshort)
54libresolv_hidden_proto (__p_cdnname)
55libresolv_hidden_proto (__p_fqnname)
56libresolv_hidden_proto (__p_option)
57libresolv_hidden_proto (__sym_ntos)
58libresolv_hidden_proto (__p_rcode)
59libresolv_hidden_proto (__p_class)
60libresolv_hidden_proto (__p_type)
61libresolv_hidden_proto (__loc_ntoa)
62libresolv_hidden_proto (__fp_nquery)
63libresolv_hidden_proto (__fp_query)
64libresolv_hidden_proto (__res_nameinquery)
65libresolv_hidden_proto (__res_queriesmatch)
66libresolv_hidden_proto (__b64_ntop)
67libresolv_hidden_proto (__dn_count_labels)
68libresolv_hidden_proto (__p_secstodate)
69
70# endif /* _RESOLV_H_ && !_ISOMAC */
71#endif
72