1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_zone_rrs, ldns_zone_soa - ldns_zone get content
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 ldns_rr_list * ldns_zone_rrs(const ldns_zone *z);
16
17 ldns_rr * ldns_zone_soa(const ldns_zone *z);
18
20 ldns_zone_rrs() Get a list of a zone's content. Note that the SOA isn't
21 included in this list. You need to get the with ldns_zone_soa.
22 z: the zone to read from
23 Returns the rrs from this zone
24
25 ldns_zone_soa() Return the soa record of a zone
26 z: the zone to read from
27 Returns the soa record in the zone
28
30 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
31 Miek Gieben.
32
33
35 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
36 http://www.nlnetlabs.nl/bugs/index.html
37
38
40 Copyright (c) 2004 - 2006 NLnet Labs.
41
42 Licensed under the BSD License. There is NO warranty; not even for MER‐
43 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
44
45
47 ldns_zone ldns_zone_set_rrs. And perldoc Net::DNS, RFC1034, RFC1035,
48 RFC4033, RFC4034 and RFC4035.
49
51 This manpage was automatically generated from the ldns source code by
52 use of Doxygen and some perl.
53
54
55
56 30 May 2006 ldns(3)