ldns  1.7.0
rr_functions.c
Go to the documentation of this file.
1 /*
2  * rr_function.c
3  *
4  * function that operate on specific rr types
5  *
6  * (c) NLnet Labs, 2004-2006
7  * See the file LICENSE for the license
8  */
9 
10 /*
11  * These come strait from perldoc Net::DNS::RR::xxx
12  * first the read variant, then the write. This is
13  * not complete.
14  */
15 
16 #include <ldns/config.h>
17 
18 #include <ldns/ldns.h>
19 
20 #include <limits.h>
21 #include <strings.h>
22 
30 static ldns_rdf *
31 ldns_rr_function(ldns_rr_type type, const ldns_rr *rr, size_t pos)
32 {
33  if (!rr || ldns_rr_get_type(rr) != type) {
34  return NULL;
35  }
36  return ldns_rr_rdf(rr, pos);
37 }
38 
47 static bool
48 ldns_rr_set_function(ldns_rr_type type, ldns_rr *rr, ldns_rdf *rdf, size_t pos)
49 {
50  ldns_rdf *pop;
51  if (!rr || ldns_rr_get_type(rr) != type) {
52  return false;
53  }
54  pop = ldns_rr_set_rdf(rr, rdf, pos);
55  ldns_rdf_deep_free(pop);
56  return true;
57 }
58 
59 /* A/AAAA records */
60 ldns_rdf *
62 {
63  /* 2 types to check, cannot use the macro */
64  if (!r || (ldns_rr_get_type(r) != LDNS_RR_TYPE_A &&
66  return NULL;
67  }
68  return ldns_rr_rdf(r, 0);
69 }
70 
71 bool
73 {
74  /* 2 types to check, cannot use the macro... */
75  ldns_rdf *pop;
76  if (!r || (ldns_rr_get_type(r) != LDNS_RR_TYPE_A &&
78  return false;
79  }
80  pop = ldns_rr_set_rdf(r, f, 0);
81  if (pop) {
82  LDNS_FREE(pop);
83  return true;
84  } else {
85  return false;
86  }
87 }
88 
89 /* NS record */
90 ldns_rdf *
92 {
93  return ldns_rr_function(LDNS_RR_TYPE_NS, r, 0);
94 }
95 
96 /* MX record */
97 ldns_rdf *
99 {
100  return ldns_rr_function(LDNS_RR_TYPE_MX, r, 0);
101 }
102 
103 ldns_rdf *
105 {
106  return ldns_rr_function(LDNS_RR_TYPE_MX, r, 1);
107 }
108 
109 /* RRSIG record */
110 ldns_rdf *
112 {
113  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 0);
114 }
115 
116 bool
118 {
119  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 0);
120 }
121 
122 ldns_rdf *
124 {
125  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 1);
126 }
127 
128 bool
130 {
131  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 1);
132 }
133 
134 ldns_rdf *
136 {
137  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 2);
138 }
139 
140 bool
142 {
143  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 2);
144 }
145 
146 ldns_rdf *
148 {
149  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 3);
150 }
151 
152 bool
154 {
155  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 3);
156 }
157 
158 ldns_rdf *
160 {
161  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 4);
162 }
163 
164 bool
166 {
167  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 4);
168 }
169 
170 ldns_rdf *
172 {
173  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 5);
174 }
175 
176 bool
178 {
179  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 5);
180 }
181 
182 ldns_rdf *
184 {
185  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 6);
186 }
187 
188 bool
190 {
191  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 6);
192 }
193 
194 ldns_rdf *
196 {
197  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 7);
198 }
199 
200 bool
202 {
203  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 7);
204 }
205 
206 ldns_rdf *
208 {
209  return ldns_rr_function(LDNS_RR_TYPE_RRSIG, r, 8);
210 }
211 
212 bool
214 {
215  return ldns_rr_set_function(LDNS_RR_TYPE_RRSIG, r, f, 8);
216 }
217 
218 /* DNSKEY record */
219 ldns_rdf *
221 {
222  return ldns_rr_function(LDNS_RR_TYPE_DNSKEY, r, 0);
223 }
224 
225 bool
227 {
228  return ldns_rr_set_function(LDNS_RR_TYPE_DNSKEY, r, f, 0);
229 }
230 
231 ldns_rdf *
233 {
234  return ldns_rr_function(LDNS_RR_TYPE_DNSKEY, r, 1);
235 }
236 
237 bool
239 {
240  return ldns_rr_set_function(LDNS_RR_TYPE_DNSKEY, r, f, 1);
241 }
242 
243 ldns_rdf *
245 {
246  return ldns_rr_function(LDNS_RR_TYPE_DNSKEY, r, 2);
247 }
248 
249 bool
251 {
252  return ldns_rr_set_function(LDNS_RR_TYPE_DNSKEY, r, f, 2);
253 }
254 
255 ldns_rdf *
257 {
258  return ldns_rr_function(LDNS_RR_TYPE_DNSKEY, r, 3);
259 }
260 
261 bool
263 {
264  return ldns_rr_set_function(LDNS_RR_TYPE_DNSKEY, r, f, 3);
265 }
266 
267 size_t
268 ldns_rr_dnskey_key_size_raw(const unsigned char* keydata,
269  const size_t len,
270  const ldns_algorithm alg)
271 {
272  /* for DSA keys */
273  uint8_t t;
274 
275  /* for RSA keys */
276  uint16_t exp;
277  uint16_t int16;
278 
279  switch ((ldns_signing_algorithm)alg) {
280  case LDNS_SIGN_DSA:
281  case LDNS_SIGN_DSA_NSEC3:
282  if (len > 0) {
283  t = keydata[0];
284  return (64 + t*8)*8;
285  } else {
286  return 0;
287  }
288  break;
289  case LDNS_SIGN_RSAMD5:
290  case LDNS_SIGN_RSASHA1:
292 #ifdef USE_SHA2
293  case LDNS_SIGN_RSASHA256:
294  case LDNS_SIGN_RSASHA512:
295 #endif
296  if (len > 0) {
297  if (keydata[0] == 0) {
298  /* big exponent */
299  if (len > 3) {
300  memmove(&int16, keydata + 1, 2);
301  exp = ntohs(int16);
302  return (len - exp - 3)*8;
303  } else {
304  return 0;
305  }
306  } else {
307  exp = keydata[0];
308  return (len-exp-1)*8;
309  }
310  } else {
311  return 0;
312  }
313  break;
314 #ifdef USE_GOST
315  case LDNS_SIGN_ECC_GOST:
316  return 512;
317 #endif
318 #ifdef USE_ECDSA
320  return 256;
322  return 384;
323 #endif
324 #ifdef USE_ED25519
325  case LDNS_SIGN_ED25519:
326  return 256;
327 #endif
328 #ifdef USE_ED448
329  case LDNS_SIGN_ED448:
330  return 456;
331 #endif
332  case LDNS_SIGN_HMACMD5:
333  return len;
334  default:
335  return 0;
336  }
337 }
338 
339 size_t
341 {
342  if (!key || !ldns_rr_dnskey_key(key)
343  || !ldns_rr_dnskey_algorithm(key)) {
344  return 0;
345  }
346  return ldns_rr_dnskey_key_size_raw((unsigned char*)ldns_rdf_data(ldns_rr_dnskey_key(key)),
349  );
350 }
351 
352 uint32_t ldns_soa_serial_identity(uint32_t ATTR_UNUSED(unused), void *data)
353 {
354  return (uint32_t) (intptr_t) data;
355 }
356 
357 uint32_t ldns_soa_serial_increment(uint32_t s, void *ATTR_UNUSED(unused))
358 {
359  return ldns_soa_serial_increment_by(s, (void *)1);
360 }
361 
362 uint32_t ldns_soa_serial_increment_by(uint32_t s, void *data)
363 {
364  return s + (intptr_t) data;
365 }
366 
367 uint32_t ldns_soa_serial_datecounter(uint32_t s, void *data)
368 {
369  struct tm tm;
370  char s_str[11];
371  int32_t new_s;
372  time_t t = data ? (time_t) (intptr_t) data : ldns_time(NULL);
373 
374  (void) strftime(s_str, 11, "%Y%m%d00", localtime_r(&t, &tm));
375  new_s = (int32_t) atoi(s_str);
376  return new_s - ((int32_t) s) <= 0 ? s+1 : ((uint32_t) new_s);
377 }
378 
379 uint32_t ldns_soa_serial_unixtime(uint32_t s, void *data)
380 {
381  int32_t new_s = data ? (int32_t) (intptr_t) data
382  : (int32_t) ldns_time(NULL);
383  return new_s - ((int32_t) s) <= 0 ? s+1 : ((uint32_t) new_s);
384 }
385 
386 void
388 {
390 }
391 
392 void
394 {
395  ldns_rr_soa_increment_func_data(soa, f, NULL);
396 }
397 
398 void
400  ldns_soa_serial_increment_func_t f, void *data)
401 {
402  ldns_rdf *prev_soa_serial_rdf;
403  if ( !soa || !f || ldns_rr_get_type(soa) != LDNS_RR_TYPE_SOA
404  || !ldns_rr_rdf(soa, 2)) {
405  return;
406  }
407  prev_soa_serial_rdf = ldns_rr_set_rdf(
408  soa
411  , (*f)( ldns_rdf2native_int32(
412  ldns_rr_rdf(soa, 2))
413  , data
414  )
415  )
416  , 2
417  );
418  LDNS_FREE(prev_soa_serial_rdf);
419 }
420 
421 void
424 {
425  ldns_rr_soa_increment_func_data(soa, f, (void *) (intptr_t) data);
426 }
427 
ldns_rr_rdf
ldns_rdf * ldns_rr_rdf(const ldns_rr *rr, size_t nr)
returns the rdata field member counter.
Definition: rr.c:895
ldns_rr_rrsig_set_sig
bool ldns_rr_rrsig_set_sig(ldns_rr *r, ldns_rdf *f)
sets the signature data of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:213
ldns_rr_soa_increment_func_data
void ldns_rr_soa_increment_func_data(ldns_rr *soa, ldns_soa_serial_increment_func_t f, void *data)
Increment the serial number of the given SOA with the given function passing it the given data argume...
Definition: rr_functions.c:399
ldns_rdf_size
size_t ldns_rdf_size(const ldns_rdf *rd)
returns the size of the rdf.
Definition: rdata.c:24
ldns_rr_rrsig_set_algorithm
bool ldns_rr_rrsig_set_algorithm(ldns_rr *r, ldns_rdf *f)
sets the algorithm of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:129
ldns_soa_serial_datecounter
uint32_t ldns_soa_serial_datecounter(uint32_t s, void *data)
Function to be used with ldns_rr_soa_increment_func or ldns_rr_soa_increment_func_int to set the soa ...
Definition: rr_functions.c:367
ldns_rr_rrsig_origttl
ldns_rdf * ldns_rr_rrsig_origttl(const ldns_rr *r)
returns the original TTL of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:147
ldns_rr_rrsig_set_signame
bool ldns_rr_rrsig_set_signame(ldns_rr *r, ldns_rdf *f)
sets the signers name of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:201
ldns_soa_serial_unixtime
uint32_t ldns_soa_serial_unixtime(uint32_t s, void *data)
Function to be used with ldns_rr_soa_increment_func or ldns_rr_soa_increment_func_int to set the soa ...
Definition: rr_functions.c:379
LDNS_RDF_TYPE_INT32
@ LDNS_RDF_TYPE_INT32
32 bits
Definition: rdata.h:56
ldns_rr_rrsig_inception
ldns_rdf * ldns_rr_rrsig_inception(const ldns_rr *r)
returns the inception time of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:171
LDNS_SIGN_HMACMD5
@ LDNS_SIGN_HMACMD5
Definition: keys.h:107
ldns_native2rdf_int32
ldns_rdf * ldns_native2rdf_int32(ldns_rdf_type type, uint32_t value)
returns an rdf that contains the given int32 value.
Definition: rdata.c:147
ldns_struct_rr
Resource Record.
Definition: rr.h:302
LDNS_FREE
#define LDNS_FREE(ptr)
Definition: util.h:60
ldns_rr_rrsig_labels
ldns_rdf * ldns_rr_rrsig_labels(const ldns_rr *r)
returns the number of labels of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:135
ldns_rr_rrsig_set_keytag
bool ldns_rr_rrsig_set_keytag(ldns_rr *r, ldns_rdf *f)
sets the keytag of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:189
ldns_rr_dnskey_algorithm
ldns_rdf * ldns_rr_dnskey_algorithm(const ldns_rr *r)
returns the algorithm of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:244
ldns_rr_a_address
ldns_rdf * ldns_rr_a_address(const ldns_rr *r)
returns the address of a LDNS_RR_TYPE_A rr
Definition: rr_functions.c:61
LDNS_SIGN_ECDSAP256SHA256
@ LDNS_SIGN_ECDSAP256SHA256
Definition: keys.h:99
ldns_rr_rrsig_keytag
ldns_rdf * ldns_rr_rrsig_keytag(const ldns_rr *r)
returns the keytag of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:183
ldns_soa_serial_increment
uint32_t ldns_soa_serial_increment(uint32_t s, void *unused __attribute__((unused)))
Definition: rr_functions.c:357
ldns_rr_soa_increment_func_int
void ldns_rr_soa_increment_func_int(ldns_rr *soa, ldns_soa_serial_increment_func_t f, int data)
Increment the serial number of the given SOA with the given function using data as an argument for th...
Definition: rr_functions.c:422
LDNS_SIGN_ECC_GOST
@ LDNS_SIGN_ECC_GOST
Definition: keys.h:98
LDNS_SIGN_RSASHA1
@ LDNS_SIGN_RSASHA1
Definition: keys.h:92
ldns_rr_dnskey_set_algorithm
bool ldns_rr_dnskey_set_algorithm(ldns_rr *r, ldns_rdf *f)
sets the algorithm of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:250
ldns_rdf2native_int8
uint8_t ldns_rdf2native_int8(const ldns_rdf *rd)
returns the native uint8_t representation from the rdf.
Definition: rdata.c:70
ldns_rr_rrsig_sig
ldns_rdf * ldns_rr_rrsig_sig(const ldns_rr *r)
returns the signature data of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:207
LDNS_SIGN_RSASHA512
@ LDNS_SIGN_RSASHA512
Definition: keys.h:96
LDNS_RR_TYPE_NS
@ LDNS_RR_TYPE_NS
an authoritative name server
Definition: rr.h:85
ldns_rr_type
enum ldns_enum_rr_type ldns_rr_type
Definition: rr.h:239
LDNS_RR_TYPE_SOA
@ LDNS_RR_TYPE_SOA
marks the start of a zone of authority
Definition: rr.h:93
ldns_soa_serial_increment_by
uint32_t ldns_soa_serial_increment_by(uint32_t s, void *data)
Function to be used with dns_rr_soa_increment_func_int, to increment the soa serial number with a cer...
Definition: rr_functions.c:362
ldns_rdf_deep_free
void ldns_rdf_deep_free(ldns_rdf *rd)
frees a rdf structure and frees the data.
Definition: rdata.c:230
ldns_rdf2native_int32
uint32_t ldns_rdf2native_int32(const ldns_rdf *rd)
returns the native uint32_t representation from the rdf.
Definition: rdata.c:98
ldns_rr_rrsig_set_typecovered
bool ldns_rr_rrsig_set_typecovered(ldns_rr *r, ldns_rdf *f)
sets the typecovered of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:117
ldns_rr_rrsig_set_origttl
bool ldns_rr_rrsig_set_origttl(ldns_rr *r, ldns_rdf *f)
sets the original TTL of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:153
ldns_rr_ns_nsdname
ldns_rdf * ldns_rr_ns_nsdname(const ldns_rr *r)
returns the name of a LDNS_RR_TYPE_NS rr
Definition: rr_functions.c:91
ATTR_UNUSED
#define ATTR_UNUSED(x)
Definition: common.h:69
ldns_rr_soa_increment
void ldns_rr_soa_increment(ldns_rr *soa)
Increment the serial number of the given SOA by one.
Definition: rr_functions.c:387
ldns_rr_dnskey_protocol
ldns_rdf * ldns_rr_dnskey_protocol(const ldns_rr *r)
returns the protocol of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:232
LDNS_SIGN_DSA
@ LDNS_SIGN_DSA
Definition: keys.h:93
config.h
ldns_struct_rdf
Resource record data field.
Definition: rdata.h:174
ldns_soa_serial_increment_func_t
uint32_t(* ldns_soa_serial_increment_func_t)(uint32_t, void *)
The type of function to be passed to ldns_rr_soa_increment_func, ldns_rr_soa_increment_func_data or l...
Definition: rr_functions.h:266
ldns_rdf_data
uint8_t * ldns_rdf_data(const ldns_rdf *rd)
returns the data of the rdf.
Definition: rdata.c:38
ldns_rr_a_set_address
bool ldns_rr_a_set_address(ldns_rr *r, ldns_rdf *f)
sets the address of a LDNS_RR_TYPE_A rr
Definition: rr_functions.c:72
ldns_rr_rrsig_typecovered
ldns_rdf * ldns_rr_rrsig_typecovered(const ldns_rr *r)
returns the type covered of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:111
ldns_rr_dnskey_flags
ldns_rdf * ldns_rr_dnskey_flags(const ldns_rr *r)
returns the flags of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:220
ldns_algorithm
enum ldns_enum_algorithm ldns_algorithm
Definition: keys.h:72
ldns.h
ldns_soa_serial_identity
uint32_t ldns_soa_serial_identity(uint32_t unused __attribute__((unused)), void *data)
Definition: rr_functions.c:352
LDNS_RR_TYPE_RRSIG
@ LDNS_RR_TYPE_RRSIG
DNSSEC.
Definition: rr.h:173
ldns_rr_soa_increment_func
void ldns_rr_soa_increment_func(ldns_rr *soa, ldns_soa_serial_increment_func_t f)
Increment the serial number of the given SOA with the given function.
Definition: rr_functions.c:393
LDNS_RR_TYPE_A
@ LDNS_RR_TYPE_A
a host address
Definition: rr.h:83
ldns_rr_set_rdf
ldns_rdf * ldns_rr_set_rdf(ldns_rr *rr, const ldns_rdf *f, size_t position)
sets a rdf member, it will be set on the position given.
Definition: rr.c:826
ldns_rr_rrsig_set_inception
bool ldns_rr_rrsig_set_inception(ldns_rr *r, ldns_rdf *f)
sets the inception date of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:177
LDNS_SIGN_DSA_NSEC3
@ LDNS_SIGN_DSA_NSEC3
Definition: keys.h:97
ldns_rr_dnskey_key_size_raw
size_t ldns_rr_dnskey_key_size_raw(const unsigned char *keydata, const size_t len, const ldns_algorithm alg)
get the length of the keydata in bits
Definition: rr_functions.c:268
ldns_rr_rrsig_algorithm
ldns_rdf * ldns_rr_rrsig_algorithm(const ldns_rr *r)
returns the algorithm of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:123
ldns_rr_rrsig_expiration
ldns_rdf * ldns_rr_rrsig_expiration(const ldns_rr *r)
returns the expiration time of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:159
LDNS_RR_TYPE_DNSKEY
@ LDNS_RR_TYPE_DNSKEY
Definition: rr.h:175
ldns_rr_dnskey_set_key
bool ldns_rr_dnskey_set_key(ldns_rr *r, ldns_rdf *f)
sets the key data of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:262
ldns_rr_dnskey_set_flags
bool ldns_rr_dnskey_set_flags(ldns_rr *r, ldns_rdf *f)
sets the flags of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:226
LDNS_SIGN_RSASHA256
@ LDNS_SIGN_RSASHA256
Definition: keys.h:95
LDNS_SIGN_RSAMD5
@ LDNS_SIGN_RSAMD5
Definition: keys.h:91
ldns_rr_dnskey_key_size
size_t ldns_rr_dnskey_key_size(const ldns_rr *key)
get the length of the keydata in bits
Definition: rr_functions.c:340
ldns_rr_dnskey_key
ldns_rdf * ldns_rr_dnskey_key(const ldns_rr *r)
returns the key data of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:256
ldns_signing_algorithm
enum ldns_enum_signing_algorithm ldns_signing_algorithm
Definition: keys.h:114
ldns_rr_rrsig_set_labels
bool ldns_rr_rrsig_set_labels(ldns_rr *r, ldns_rdf *f)
sets the number of labels of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:141
LDNS_RR_TYPE_MX
@ LDNS_RR_TYPE_MX
mail exchange
Definition: rr.h:111
LDNS_SIGN_RSASHA1_NSEC3
@ LDNS_SIGN_RSASHA1_NSEC3
Definition: keys.h:94
ldns_rr_rrsig_signame
ldns_rdf * ldns_rr_rrsig_signame(const ldns_rr *r)
returns the signers name of a LDNS_RR_TYPE_RRSIG RR
Definition: rr_functions.c:195
ldns_rr_dnskey_set_protocol
bool ldns_rr_dnskey_set_protocol(ldns_rr *r, ldns_rdf *f)
sets the protocol of a LDNS_RR_TYPE_DNSKEY rr
Definition: rr_functions.c:238
ldns_rr_rrsig_set_expiration
bool ldns_rr_rrsig_set_expiration(ldns_rr *r, ldns_rdf *f)
sets the expireation date of a LDNS_RR_TYPE_RRSIG rr
Definition: rr_functions.c:165
LDNS_RR_TYPE_AAAA
@ LDNS_RR_TYPE_AAAA
ipv6 address
Definition: rr.h:137
ldns_rr_mx_preference
ldns_rdf * ldns_rr_mx_preference(const ldns_rr *r)
returns the mx pref.
Definition: rr_functions.c:98
LDNS_SIGN_ECDSAP384SHA384
@ LDNS_SIGN_ECDSAP384SHA384
Definition: keys.h:100
ldns_rr_mx_exchange
ldns_rdf * ldns_rr_mx_exchange(const ldns_rr *r)
returns the mx host of a LDNS_RR_TYPE_MX rr
Definition: rr_functions.c:104
ldns_rr_get_type
ldns_rr_type ldns_rr_get_type(const ldns_rr *rr)
returns the type of the rr.
Definition: rr.c:929