1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rdf_size, ldns_rdf_get_type, ldns_rdf_data
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 size_t ldns_rdf_size(const ldns_rdf *rd);
21
22 ldns_rdf_type ldns_rdf_get_type(const ldns_rdf *rd);
23
24 uint8_t * ldns_rdf_data(const ldns_rdf *rd);
25
27 ldns_rdf_size() returns the size of the rdf.
28 *rd: the rdf to read from
29 Returns uint16_t with the size
30
31 ldns_rdf_get_type() returns the type of the rdf. We need to insert
32 _get_ here to prevent conflict the the rdf_type TYPE.
33 *rd: the rdf to read from
34 Returns ldns_rdf_type with the type
35
36 ldns_rdf_data() returns the data of the rdf.
37 *rd: the rdf to read from
38 Returns uint8_t* pointer to the rdf's data
39
41 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
42 Rozendaal and Miek Gieben.
43
44
46 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
47 http://www.nlnetlabs.nl/bugs/index.html
48
49 Be sure to select ldns as the product.
50
51
53 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
54 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
55 PARTICULAR PURPOSE.
56
57
59 ldns_rdf. And perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034
60 and RFC4035.
61
63 This manpage was automaticly generated from the ldns source code by use
64 of Doxygen and some perl.
65
66
67
68 ldns(25 Apr 2005)