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
7 addresses 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. Which consists out of Jelte Jansen and
39 Miek Gieben.
40
41
43 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
44 http://www.nlnetlabs.nl/bugs/index.html
45
46
48 Copyright (c) 2004 - 2006 NLnet Labs.
49
50 Licensed under the BSD License. There is NO warranty; not even for MER‐
51 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
52
53
55 ldns_rr_list, ldns_rr. And perldoc Net::DNS, RFC1034, RFC1035,
56 RFC4033, RFC4034 and RFC4035.
57
59 This manpage was automatically generated from the ldns source code by
60 use of Doxygen and some perl.
61
62
63
64 30 May 2006 ldns(3)