1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_list_cat, ldns_rr_list_push_rr, ldns_rr_list_pop_rr
7
8
10 #ifdef HAVE_STDINT_H
11 #include <stdint.h>
12 #endif /* HAVE_STDINT_H */
13
14 #ifdef HAVE_STDBOOL_H
15 #include <stdbool.h>
16 #endif /* HAVE_STDBOOL_H */
17
18 #include <ldns/ldns.h>
19
20 bool ldns_rr_list_cat(ldns_rr_list *left, ldns_rr_list *right);
21
22 bool ldns_rr_list_push_rr(ldns_rr_list *rr_list, ldns_rr *rr);
23
24 ldns_rr* ldns_rr_list_pop_rr(ldns_rr_list *rr_list);
25
27 ldns_rr_list_cat() concatenates two ldns_rr_lists together. This modi‐
28 fies *left (to extend it and add the pointers from *right).
29 left: the leftside
30 right: the rightside
31 Returns a left with right concatenated to it
32
33 ldns_rr_list_push_rr() pushes an rr to an rrlist.
34 rr_list: the rr_list to push to
35 rr: the rr to push
36 Returns false on error, otherwise true
37
38 ldns_rr_list_pop_rr() pops the last rr from an rrlist.
39 rr_list: the rr_list to pop from
40 Returns NULL if nothing to pop. Otherwise the popped RR
41
43 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
44 Rozendaal and Miek Gieben.
45
46
48 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
49 http://www.nlnetlabs.nl/bugs/index.html
50
51 Be sure to select ldns as the product.
52
53
55 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
56 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
57 PARTICULAR PURPOSE.
58
59
61 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1043, RFC1035,
62 RFC4033, RFC4034 and RFC4035.
63
65 This manpage was automaticly generated from the ldns source code by use
66 of Doxygen and some perl.
67
68
69
70 ldns(25 Apr 2005)