1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_get_rr_list_addr_by_name, ldns_get_rr_list_name_by_addr
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 ldns_rr_list* ldns_get_rr_list_addr_by_name(ldns_resolver *r, ldns_rdf
16 *name, ldns_rr_class c, uint16_t flags);
17
18 ldns_rr_list* ldns_get_rr_list_name_by_addr(ldns_resolver *r, ldns_rdf
19 *addr, ldns_rr_class c, uint16_t flags);
20
22 ldns_get_rr_list_addr_by_name() Ask the resolver about name and return
23 all address records
24 r: the resolver to use
25 name: the name to look for
26 c: the class to use
27 flags: give some optional flags to the query
28
29 ldns_get_rr_list_name_by_addr() ask the resolver about the address and
30 return the name
31 r: the resolver to use
32 addr: the addr to look for
33 c: the class to use
34 flags: give some optional flags to the query
35
37 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
38 Miek Gieben.
39
40
42 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
43 http://www.nlnetlabs.nl/bugs/index.html
44
45
47 Copyright (c) 2004 - 2006 NLnet Labs.
48
49 Licensed under the BSD License. There is NO warranty; not even for MER‐
50 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
51
52
54 ldns_rr_list, ldns_rr. And perldoc Net::DNS, RFC1034, RFC1035,
55 RFC4033, RFC4034 and RFC4035.
56
58 This manpage was automaticly generated from the ldns source code by use
59 of Doxygen and some perl.
60
61
62
63 30 May 2006 ldns(3)