1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_rdf_set_size, ldns_rdf_set_type, ldns_rdf_set_data - set rdf
7 attributes
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 void ldns_rdf_set_size(ldns_rdf *rd, size_t size);
17
18 void ldns_rdf_set_type(ldns_rdf *rd, ldns_rdf_type type);
19
20 void ldns_rdf_set_data(ldns_rdf *rd, void *data);
21
23 ldns_rdf_set_size() sets the size of the rdf.
24 *rd: the rdf to operate on
25 size: the new size
26 Returns void
27
28 ldns_rdf_set_type() sets the size of the rdf.
29 *rd: the rdf to operate on
30 type: the new type
31 Returns void
32
33 ldns_rdf_set_data() sets the size of the rdf.
34 *rd: the rdf to operate on
35 *data: pointer to the new data
36 Returns void
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_rdf. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
57 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)