1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_set_push_rr, ldns_rr_set_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_set_push_rr(ldns_rr_list *rr_list, ldns_rr *rr);
21
22 ldns_rr* ldns_rr_set_pop_rr(ldns_rr_list *rr_list);
23
25 ldns_rr_set_push_rr() pushes an rr to an rrset (which really are
26 rr_list's).
27 *rr_list: the rrset to push the rr to
28 *rr: the rr to push
29 Returns true if the push succeeded otherwise false
30
31 ldns_rr_set_pop_rr() pops the last rr from an rrset. This function is
32 there only for the symmetry.
33 rr_list: the rr_list to pop from
34 Returns NULL if nothing to pop. Otherwise the popped RR
35
36
38 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
39 Rozendaal and 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 Be sure to select ldns as the product.
47
48
50 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
51 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
52 PARTICULAR PURPOSE.
53
54
56 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1043, RFC1035,
57 RFC4033, RFC4034 and RFC4035.
58
60 This manpage was automaticly generated from the ldns source code by use
61 of Doxygen and some perl.
62
63
64
65 ldns(25 Apr 2005)