1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_rr_list_new, ldns_rr_list_free - ldns_rr_list creation and
7 destruction
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_rr_list* ldns_rr_list_new(void);
17
18 void ldns_rr_list_free(ldns_rr_list *rr_list);
19
21 ldns_rr_list_new() creates a new rr_list structure.
22 Returns a new rr_list structure
23
24 ldns_rr_list_free() frees an rr_list structure.
25 rr_list: the list to free
26
28 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
29 Miek Gieben.
30
31
33 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
34 http://www.nlnetlabs.nl/bugs/index.html
35
36
38 Copyright (c) 2004 - 2006 NLnet Labs.
39
40 Licensed under the BSD License. There is NO warranty; not even for MER‐
41 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
42
43
45 ldns_rr, ldns_rr_list. And perldoc Net::DNS, RFC1034, RFC1035,
46 RFC4033, RFC4034 and RFC4035.
47
49 This manpage was automatically generated from the ldns source code by
50 use of Doxygen and some perl.
51
52
53
54 30 May 2006 ldns(3)