1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_zone_set_rrs, ldns_zone_set_soa - ldns_zone set content
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 void ldns_zone_set_rrs(ldns_zone *z, ldns_rr_list *rrlist);
16
17 void ldns_zone_set_soa(ldns_zone *z, ldns_rr *soa);
18
20 ldns_zone_set_rrs() Set the zone's contents
21 z: the zone to put the new soa in
22 rrlist: the rrlist to use
23
24 ldns_zone_set_soa() Set the zone's soa record
25 z: the zone to put the new soa in
26 soa: the soa to set
27
29 The ldns team at NLnet Labs.
30
31
33 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
34 http://www.nlnetlabs.nl/bugs/index.html
35
36
38 Copyright (c) 2004 - 2006 NLnet Labs.
39
40 Licensed under the BSD License. There is NO warranty; not even for MER‐
41 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
42
43
45 ldns_zone, ldns_zone_rrs, ldns_zone_soa. And perldoc Net::DNS,
46 RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
47
49 This manpage was automatically generated from the ldns source code.
50
51
52
53 30 May 2006 ldns(3)