Added CVS id. Detabified.
[platform/upstream/c-ares.git] / nameser.h
1 /* $Id$ */
2
3 #ifndef ARES_NAMESER_H
4 #define ARES_NAMESER_H
5
6 /* Windows-only header file provided by liren@vivisimo.com to make his Windows
7    port build */
8
9 #ifndef NETWARE
10 #include <windows.h>
11 #include <process.h> /* for the _getpid() proto */
12 #endif  /* !NETWARE */
13 #include <sys/types.h>
14
15 #ifndef NETWARE
16
17 #define MAXHOSTNAMELEN 256
18
19 #define EINPROGRESS WSAEINPROGRESS
20 #define EWOULDBLOCK WSAEWOULDBLOCK
21 #define EMSGSIZE     WSAEMSGSIZE
22 #define EAFNOSUPPORT WSAEAFNOSUPPORT
23
24 /* Structure for scatter/gather I/O.  */
25 struct iovec
26 {
27     void *iov_base;     /* Pointer to data.  */
28     size_t iov_len;     /* Length of data.  */
29 };
30
31 #define getpid() _getpid()
32
33 int ares_writev (SOCKET s, const struct iovec *vector, size_t count);
34 #define writev(s,vect,count)  ares_writev(s,vect,count)
35
36 struct timezone { int dummy; };
37
38 int ares_gettimeofday(struct timeval *tv, struct timezone *tz);
39 #define gettimeofday(tv,tz) ares_gettimeofday(tv,tz)
40
41 #endif  /* !NETWARE */
42
43 #define NS_CMPRSFLGS  0xc0
44 #define NS_IN6ADDRSZ  16
45 #define NS_INT16SZ    2
46 #define NS_INADDRSZ   4
47
48   /* Flag bits indicating name compression. */
49 #define INDIR_MASK    NS_CMPRSFLGS
50
51 typedef enum __ns_class {
52     ns_c_invalid = 0,       /* Cookie. */
53     ns_c_in = 1,            /* Internet. */
54     ns_c_2 = 2,             /* unallocated/unsupported. */
55     ns_c_chaos = 3,         /* MIT Chaos-net. */
56     ns_c_hs = 4,            /* MIT Hesiod. */
57     /* Query class values which do not appear in resource records */
58     ns_c_none = 254,        /* for prereq. sections in update requests */
59     ns_c_any = 255,         /* Wildcard match. */
60     ns_c_max = 65536
61 } ns_class;
62
63 #define C_IN           ns_c_in
64
65 typedef enum __ns_type {
66     ns_t_invalid = 0,       /* Cookie. */
67     ns_t_a = 1,             /* Host address. */
68     ns_t_ns = 2,            /* Authoritative server. */
69     ns_t_md = 3,            /* Mail destination. */
70     ns_t_mf = 4,            /* Mail forwarder. */
71     ns_t_cname = 5,         /* Canonical name. */
72     ns_t_soa = 6,           /* Start of authority zone. */
73     ns_t_mb = 7,            /* Mailbox domain name. */
74     ns_t_mg = 8,            /* Mail group member. */
75     ns_t_mr = 9,            /* Mail rename name. */
76     ns_t_null = 10,         /* Null resource record. */
77     ns_t_wks = 11,          /* Well known service. */
78     ns_t_ptr = 12,          /* Domain name pointer. */
79     ns_t_hinfo = 13,        /* Host information. */
80     ns_t_minfo = 14,        /* Mailbox information. */
81     ns_t_mx = 15,           /* Mail routing information. */
82     ns_t_txt = 16,          /* Text strings. */
83     ns_t_rp = 17,           /* Responsible person. */
84     ns_t_afsdb = 18,        /* AFS cell database. */
85     ns_t_x25 = 19,          /* X_25 calling address. */
86     ns_t_isdn = 20,         /* ISDN calling address. */
87     ns_t_rt = 21,           /* Router. */
88     ns_t_nsap = 22,         /* NSAP address. */
89     ns_t_nsap_ptr = 23,     /* Reverse NSAP lookup (deprecated). */
90     ns_t_sig = 24,          /* Security signature. */
91     ns_t_key = 25,          /* Security key. */
92     ns_t_px = 26,           /* X.400 mail mapping. */
93     ns_t_gpos = 27,         /* Geographical position (withdrawn). */
94     ns_t_aaaa = 28,         /* Ip6 Address. */
95     ns_t_loc = 29,          /* Location Information. */
96     ns_t_nxt = 30,          /* Next domain (security). */
97     ns_t_eid = 31,          /* Endpoint identifier. */
98     ns_t_nimloc = 32,       /* Nimrod Locator. */
99     ns_t_srv = 33,          /* Server Selection. */
100     ns_t_atma = 34,         /* ATM Address */
101     ns_t_naptr = 35,        /* Naming Authority PoinTeR */
102     ns_t_kx = 36,           /* Key Exchange */
103     ns_t_cert = 37,         /* Certification record */
104     ns_t_a6 = 38,           /* IPv6 address (deprecates AAAA) */
105     ns_t_dname = 39,        /* Non-terminal DNAME (for IPv6) */
106     ns_t_sink = 40,         /* Kitchen sink (experimentatl) */
107     ns_t_opt = 41,          /* EDNS0 option (meta-RR) */
108     ns_t_tsig = 250,        /* Transaction signature. */
109     ns_t_ixfr = 251,        /* Incremental zone transfer. */
110     ns_t_axfr = 252,        /* Transfer zone of authority. */
111     ns_t_mailb = 253,       /* Transfer mailbox records. */
112     ns_t_maila = 254,       /* Transfer mail agent records. */
113     ns_t_any = 255,         /* Wildcard match. */
114     ns_t_zxfr = 256,        /* BIND-specific, nonstandard. */
115     ns_t_max = 65536
116 } ns_type;
117
118 #define T_PTR          ns_t_ptr
119 #define T_A            ns_t_a
120
121
122 #define NS_DEFAULTPORT        53      /* For both TCP and UDP. */
123 #define NAMESERVER_PORT        NS_DEFAULTPORT
124
125 #define NS_HFIXEDSZ   12      /* #/bytes of fixed data in header */
126 #define HFIXEDSZ      NS_HFIXEDSZ
127
128 #define NS_QFIXEDSZ   4       /* #/bytes of fixed data in query */
129 #define QFIXEDSZ       NS_QFIXEDSZ
130
131 typedef enum __ns_opcode {
132     ns_o_query = 0,         /* Standard query. */
133     ns_o_iquery = 1,        /* Inverse query (deprecated/unsupported). */
134     ns_o_status = 2,        /* Name server status query (unsupported). */
135                                 /* Opcode 3 is undefined/reserved. */
136     ns_o_notify = 4,        /* Zone change notification. */
137     ns_o_update = 5,        /* Zone update message. */
138     ns_o_max = 6
139 } ns_opcode;
140
141 #define QUERY          ns_o_query
142
143 #define NS_MAXLABEL   63
144 #define MAXLABEL       NS_MAXLABEL
145
146 #define NS_RRFIXEDSZ  10      /* #/bytes of fixed data in r record */
147 #define RRFIXEDSZ      NS_RRFIXEDSZ
148
149 #define T_CNAME                ns_t_cname
150
151
152 #define NS_PACKETSZ   512     /* maximum packet size */
153 #define PACKETSZ       NS_PACKETSZ
154
155 typedef enum __ns_rcode {
156     ns_r_noerror = 0,       /* No error occurred. */
157     ns_r_formerr = 1,       /* Format error. */
158     ns_r_servfail = 2,      /* Server failure. */
159     ns_r_nxdomain = 3,      /* Name error. */
160     ns_r_notimpl = 4,       /* Unimplemented. */
161     ns_r_refused = 5,       /* Operation refused. */
162     /* these are for BIND_UPDATE */
163     ns_r_yxdomain = 6,      /* Name exists */
164     ns_r_yxrrset = 7,       /* RRset exists */
165     ns_r_nxrrset = 8,       /* RRset does not exist */
166     ns_r_notauth = 9,       /* Not authoritative for zone */
167     ns_r_notzone = 10,      /* Zone of record different from zone section */
168     ns_r_max = 11,
169     /* The following are TSIG extended errors */
170     ns_r_badsig = 16,
171     ns_r_badkey = 17,
172     ns_r_badtime = 18
173 } ns_rcode;
174
175 #define SERVFAIL        ns_r_servfail
176 #define NOTIMP          ns_r_notimpl
177 #define REFUSED         ns_r_refused
178 #undef NOERROR /* it seems this is already defined in winerror.h */
179 #define NOERROR         ns_r_noerror
180 #define FORMERR         ns_r_formerr
181 #define NXDOMAIN        ns_r_nxdomain
182
183 #define C_CHAOS         ns_c_chaos
184 #define C_HS            ns_c_hs
185 #define C_NONE          ns_c_none
186 #define C_ANY           ns_c_any
187
188 #define T_A             ns_t_a
189 #define T_NS            ns_t_ns
190 #define T_MD            ns_t_md
191 #define T_MF            ns_t_mf
192 #define T_CNAME         ns_t_cname
193 #define T_SOA           ns_t_soa
194 #define T_MB            ns_t_mb
195 #define T_MG            ns_t_mg
196 #define T_MR            ns_t_mr
197 #define T_NULL          ns_t_null
198 #define T_WKS           ns_t_wks
199 #define T_PTR           ns_t_ptr
200 #define T_HINFO         ns_t_hinfo
201 #define T_MINFO         ns_t_minfo
202 #define T_MX            ns_t_mx
203 #define T_TXT           ns_t_txt
204 #define T_RP            ns_t_rp
205 #define T_AFSDB         ns_t_afsdb
206 #define T_X25           ns_t_x25
207 #define T_ISDN          ns_t_isdn
208 #define T_RT            ns_t_rt
209 #define T_NSAP          ns_t_nsap
210 #define T_NSAP_PTR      ns_t_nsap_ptr
211 #define T_SIG           ns_t_sig
212 #define T_KEY           ns_t_key
213 #define T_PX            ns_t_px
214 #define T_GPOS          ns_t_gpos
215 #define T_AAAA          ns_t_aaaa
216 #define T_LOC           ns_t_loc
217 #define T_NXT           ns_t_nxt
218 #define T_EID           ns_t_eid
219 #define T_NIMLOC        ns_t_nimloc
220 #define T_SRV           ns_t_srv
221 #define T_ATMA          ns_t_atma
222 #define T_NAPTR         ns_t_naptr
223 #define T_TSIG          ns_t_tsig
224 #define T_IXFR          ns_t_ixfr
225 #define T_AXFR          ns_t_axfr
226 #define T_MAILB         ns_t_mailb
227 #define T_MAILA         ns_t_maila
228 #define T_ANY           ns_t_any
229
230 #endif /* ARES_NAMESER_H */