1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rr_list_rr_count, ldns_rr_list_set_rr_count
7
8
10 #ifdef HAVE_STDINT_H
11 #include <stdint.h>
12 #endif /* HAVE_STDINT_H */
13
14 #ifdef HAVE_STDBOOL_H
15 #include <stdbool.h>
16 #endif /* HAVE_STDBOOL_H */
17
18 #include <ldns/ldns.h>
19
20 size_t ldns_rr_list_rr_count(ldns_rr_list *rr_list);
21
22 void ldns_rr_list_set_rr_count(ldns_rr_list *rr_list, size_t count);
23
25 ldns_rr_list_rr_count() returns the number of rr's in an rr_list.
26 rr_list: the rr_list to read from
27 Returns the number of rr's
28
29 ldns_rr_list_set_rr_count() sets the number of rr's in an rr_list.
30 rr_list: the rr_list to set the count on
31 count: the number of rr in this list
32 Returns void
33
35 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
36 Rozendaal and Miek Gieben.
37
38
40 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
41 http://www.nlnetlabs.nl/bugs/index.html
42
43 Be sure to select ldns as the product.
44
45
47 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
48 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
49 PARTICULAR PURPOSE.
50
51
53 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1043, RFC1035,
54 RFC4033, RFC4034 and RFC4035.
55
57 This manpage was automaticly generated from the ldns source code by use
58 of Doxygen and some perl.
59
60
61
62 ldns(25 Apr 2005)