1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_key_free, ldns_key_deep_free, ldns_key_list_free - free a ldns_key
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 void ldns_key_free(ldns_key *key);
16
17 void ldns_key_deep_free(ldns_key *key);
18
19 void ldns_key_list_free(ldns_key_list *key_list);
20
22 ldns_key_free() frees a key structure, but not its internal data struc‐
23 tures
24
25 key: the key object to free
26
27 ldns_key_deep_free() frees a key structure and all its internal data
28 structures, except the data set by ldns_key_set_external_key()
29
30 key: the key object to free
31
32 ldns_key_list_free() Frees a key list structure
33 key_list: the key list object to free
34
36 The ldns team at NLnet Labs.
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
45 Copyright (c) 2004 - 2006 NLnet Labs.
46
47 Licensed under the BSD License. There is NO warranty; not even for MER‐
48 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
49
50
52 ldns_key. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
53 and RFC4035.
54
56 This manpage was automatically generated from the ldns source code.
57
58
59
60 30 May 2006 ldns(3)