1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_zone_push_rr, ldns_zone_push_rr_list - add rr's to a ldns_zone
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 bool ldns_zone_push_rr(ldns_zone *z, ldns_rr *rr);
16
17 bool ldns_zone_push_rr_list(ldns_zone *z, const ldns_rr_list *list);
18
20 ldns_zone_push_rr() push an single rr to a zone structure. This func‐
21 tion use pointer copying, so the rr_list structure inside z is
22 modified!
23 z: the zone to add to
24 rr: the rr to add
25 Returns a true on succes otherwise falsed
26
27 ldns_zone_push_rr_list() push an rrlist to a zone structure. This func‐
28 tion use pointer copying, so the rr_list structure inside z is
29 modified!
30 z: the zone to add to
31 list: the list to add
32 Returns a true on succes otherwise falsed
33
35 The ldns team at NLnet Labs.
36
37
39 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
40 http://www.nlnetlabs.nl/bugs/index.html
41
42
44 Copyright (c) 2004 - 2006 NLnet Labs.
45
46 Licensed under the BSD License. There is NO warranty; not even for MER‐
47 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
48
49
51 ldns_zone. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
52 and RFC4035.
53
55 This manpage was automatically generated from the ldns source code.
56
57
58
59 30 May 2006 ldns(3)