1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_push_rdf, ldns_rr_pop_rdf
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_push_rdf(ldns_rr *rr, ldns_rdf *f);
21
22 ldns_rdf* ldns_rr_pop_rdf(ldns_rr *rr);
23
25 ldns_rr_push_rdf() sets rd_field member, it will be placed in the next
26 available spot.
27 *rr: rr to operate on
28 *f: the data field member to set
29 Returns bool
30
31 ldns_rr_pop_rdf() removes a rd_field member, it will be popped from the
32 last position.
33 *rr: rr to operate on
34 Returns rdf which was popped (null if nothing)
35
37 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
38 Rozendaal and Miek Gieben.
39
40
42 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
43 http://www.nlnetlabs.nl/bugs/index.html
44
45 Be sure to select ldns as the product.
46
47
49 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
50 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
51 PARTICULAR PURPOSE.
52
53
55 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1043, 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 ldns(25 Apr 2005)