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 - get ad‐
7 dresses by name or names by address
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_rr_list* ldns_get_rr_list_addr_by_name(ldns_resolver *r, const
17 ldns_rdf *name, ldns_rr_class c, uint16_t flags);
18
19 ldns_rr_list* ldns_get_rr_list_name_by_addr(ldns_resolver *r, const
20 ldns_rdf *addr, ldns_rr_class c, uint16_t flags);
21
23 ldns_get_rr_list_addr_by_name() Ask the resolver about name and return
24 all address records
25 r: the resolver to use
26 name: the name to look for
27 c: the class to use
28 flags: give some optional flags to the query
29
30 ldns_get_rr_list_name_by_addr() ask the resolver about the address and
31 return the name
32 r: the resolver to use
33 addr: the addr to look for
34 c: the class to use
35 flags: give some optional flags to the query
36
38 The ldns team at NLnet Labs.
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 automatically generated from the ldns source code.
59
60
61
62 30 May 2006 ldns(3)