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