1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_rdf, ldns_rr_owner, ldns_rr_rd_count, ldns_rr_ttl,
7 ldns_rr_get_class
8
9
11 #ifdef HAVE_STDINT_H
12 #include <stdint.h>
13 #endif /* HAVE_STDINT_H */
14
15 #ifdef HAVE_STDBOOL_H
16 #include <stdbool.h>
17 #endif /* HAVE_STDBOOL_H */
18
19 #include <ldns/ldns.h>
20
21 ldns_rdf* ldns_rr_rdf(const ldns_rr *rr, size_t nr);
22
23 ldns_rdf* ldns_rr_owner(const ldns_rr *rr);
24
25 size_t ldns_rr_rd_count(const ldns_rr *rr);
26
27 uint32_t ldns_rr_ttl(const ldns_rr *rr);
28
29 ldns_rr_class ldns_rr_get_class(const ldns_rr *rr);
30
32 ldns_rr_rdf() returns the rdata field member counter.
33 *rr: rr to operate on
34 nr: the number of the rdf to return
35 Returns ldns_rdf *
36
37 ldns_rr_owner() returns the owner name of an rr structure.
38 *rr: rr to operate on
39 Returns ldns_rdf *
40
41 ldns_rr_rd_count() returns the rd_count of an rr structure.
42 *rr: the rr to read from
43 Returns the rd count of the rr
44
45 ldns_rr_ttl() returns the ttl of an rr structure.
46 *rr: the rr to read from
47 Returns the ttl of the rr
48
49 ldns_rr_get_class() returns the class of the rr.
50 *rr: the rr to read from
51 Returns the class of the rr
52
54 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
55 Rozendaal and Miek Gieben.
56
57
59 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
60 http://www.nlnetlabs.nl/bugs/index.html
61
62 Be sure to select ldns as the product.
63
64
66 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
67 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
68 PARTICULAR PURPOSE.
69
70
72 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1043, RFC1035,
73 RFC4033, RFC4034 and RFC4035.
74
76 This manpage was automaticly generated from the ldns source code by use
77 of Doxygen and some perl.
78
79
80
81 ldns(25 Apr 2005)