1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_rr_list_cat, ldns_rr_list_push_rr, ldns_rr_list_pop_rr -
7 ldns_rr_list manipulation
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 bool ldns_rr_list_cat(ldns_rr_list *left, const ldns_rr_list *right);
17
18 bool ldns_rr_list_push_rr(ldns_rr_list *rr_list, const ldns_rr *rr);
19
20 ldns_rr* ldns_rr_list_pop_rr(ldns_rr_list *rr_list);
21
23 ldns_rr_list_cat() concatenates two ldns_rr_lists together. This modi‐
24 fies *left (to extend it and add the pointers from *right).
25 left: the leftside
26 right: the rightside
27 Returns a left with right concatenated to it
28
29 ldns_rr_list_push_rr() pushes an rr to an rrlist.
30 rr_list: the rr_list to push to
31 rr: the rr to push
32 Returns false on error, otherwise true
33
34 ldns_rr_list_pop_rr() pops the last rr from an rrlist.
35 rr_list: the rr_list to pop from
36 Returns NULL if nothing to pop. Otherwise the popped RR
37
39 The ldns team at NLnet Labs.
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, ldns_rr_list. And perldoc Net::DNS, RFC1034, RFC1035,
56 RFC4033, RFC4034 and RFC4035.
57
59 This manpage was automatically generated from the ldns source code.
60
61
62
63 30 May 2006 ldns(3)