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 at‐
7 tributes
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.
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
48 Copyright (c) 2004 - 2006 NLnet Labs.
49
50 Licensed under the BSD License. There is NO warranty; not even for MER‐
51 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
52
53
55 ldns_rdf. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
56 and RFC4035.
57
59 This manpage was automatically generated from the ldns source code.
60
61
62
63 30 May 2006 ldns(3)