1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_rr_list_rr_count, ldns_rr_list_set_rr_count - get and set
7 ldns_rr_list length
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 size_t ldns_rr_list_rr_count(const ldns_rr_list *rr_list);
17
18 void ldns_rr_list_set_rr_count(ldns_rr_list *rr_list, size_t count);
19
21 ldns_rr_list_rr_count() returns the number of rr's in an rr_list.
22 rr_list: the rr_list to read from
23 Returns the number of rr's
24
25 ldns_rr_list_set_rr_count() sets the number of rr's in an rr_list.
26 rr_list: the rr_list to set the count on
27 count: the number of rr in this list
28 Returns void
29
31 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
32 Miek Gieben.
33
34
36 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
37 http://www.nlnetlabs.nl/bugs/index.html
38
39
41 Copyright (c) 2004 - 2006 NLnet Labs.
42
43 Licensed under the BSD License. There is NO warranty; not even for MER‐
44 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
45
46
48 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1034, RFC1035,
49 RFC4033, RFC4034 and RFC4035.
50
52 This manpage was automatically generated from the ldns source code by
53 use of Doxygen and some perl.
54
55
56
57 30 May 2006 ldns(3)