1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_dnskey_flags, ldns_rr_dnskey_set_flags, ldns_rr_dnskey_proto‐
7 col, ldns_rr_dnskey_set_protocol, ldns_rr_dnskey_algorithm,
8 ldns_rr_dnskey_set_algorithm, ldns_rr_dnskey_key,
9 ldns_rr_dnskey_set_key
10
11
13 #ifdef HAVE_STDINT_H
14 #include <stdint.h>
15 #endif /* HAVE_STDINT_H */
16
17 #ifdef HAVE_STDBOOL_H
18 #include <stdbool.h>
19 #endif /* HAVE_STDBOOL_H */
20
21 #include <ldns/ldns.h>
22
23 ldns_rdf* ldns_rr_dnskey_flags(ldns_rr *r);
24
25 bool ldns_rr_dnskey_set_flags(ldns_rr *r, ldns_rdf *f);
26
27 ldns_rdf* ldns_rr_dnskey_protocol(ldns_rr *r);
28
29 bool ldns_rr_dnskey_set_protocol(ldns_rr *r, ldns_rdf *f);
30
31 ldns_rdf* ldns_rr_dnskey_algorithm(ldns_rr *r);
32
33 bool ldns_rr_dnskey_set_algorithm(ldns_rr *r, ldns_rdf *f);
34
35 ldns_rdf* ldns_rr_dnskey_key(ldns_rr *r);
36
37 bool ldns_rr_dnskey_set_key(ldns_rr *r, ldns_rdf *f);
38
40 ldns_rr_dnskey_flags() returns the flags of a LDNS_RR_TYPE_DNSKEY rr
41 r: the resource record
42 Returns a ldns_rdf* with the flags or NULL on failure
43
44 ldns_rr_dnskey_set_flags() sets the flags of a LDNS_RR_TYPE_DNSKEY rr
45 r: the rr to use
46 f: the flags to set
47 Returns true on success, false otherwise
48
49 ldns_rr_dnskey_protocol() returns the protocol of a LDNS_RR_TYPE_DNSKEY
50 rr
51 r: the resource record
52 Returns a ldns_rdf* with the protocol or NULL on failure
53
54 ldns_rr_dnskey_set_protocol() sets the protocol of a
55 LDNS_RR_TYPE_DNSKEY rr
56 r: the rr to use
57 f: the protocol to set
58 Returns true on success, false otherwise
59
60 ldns_rr_dnskey_algorithm() returns the algorithm of a
61 LDNS_RR_TYPE_DNSKEY rr
62 r: the resource record
63 Returns a ldns_rdf* with the algorithm or NULL on failure
64
65 ldns_rr_dnskey_set_algorithm() sets the algorithm of a
66 LDNS_RR_TYPE_DNSKEY rr
67 r: the rr to use
68 f: the algorithm to set
69 Returns true on success, false otherwise
70
71 ldns_rr_dnskey_key() returns the key data of a LDNS_RR_TYPE_DNSKEY rr
72 r: the resource record
73 Returns a ldns_rdf* with the key data or NULL on failure
74
75 ldns_rr_dnskey_set_key() sets the key data of a LDNS_RR_TYPE_DNSKEY rr
76 r: the rr to use
77 f: the key data to set
78 Returns true on success, false otherwise
79
81 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
82 Rozendaal and Miek Gieben.
83
84
86 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
87 http://www.nlnetlabs.nl/bugs/index.html
88
89 Be sure to select ldns as the product.
90
91
93 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
94 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
95 PARTICULAR PURPOSE.
96
97
99 ldns_rr. And perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and
100 RFC4035.
101
103 This manpage was automaticly generated from the ldns source code by use
104 of Doxygen and some perl.
105
106
107
108 ldns(25 Apr 2005)