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. Which consists out of Jelte Jansen and
40 Miek Gieben.
41
42
44 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
45 http://www.nlnetlabs.nl/bugs/index.html
46
47
49 Copyright (c) 2004 - 2006 NLnet Labs.
50
51 Licensed under the BSD License. There is NO warranty; not even for MER‐
52 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
53
54
56 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1034, RFC1035,
57 RFC4033, RFC4034 and RFC4035.
58
60 This manpage was automatically generated from the ldns source code by
61 use of Doxygen and some perl.
62
63
64
65 30 May 2006 ldns(3)