1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_key_free, ldns_key_deep_free, ldns_key_list_free
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 void ldns_key_free(ldns_key *key);
21
22 void ldns_key_deep_free(ldns_key *key);
23
24 void ldns_key_list_free(ldns_key_list *key_list);
25
27 ldns_key_free() frees a key structure
28
29 key: the key object to free
30
31 ldns_key_deep_free() frees a key structure and all it's internal data
32
33 key: the key object to free
34
35 ldns_key_list_free() Frees a key list structure
36 key_list: the key list object to free
37
39 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
40 Rozendaal and Miek Gieben.
41
42
44 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
45 http://www.nlnetlabs.nl/bugs/index.html
46
47 Be sure to select ldns as the product.
48
49
51 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
52 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
53 PARTICULAR PURPOSE.
54
56 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
57
59 This manpage was automaticly generated from the ldns source code by use
60 of Doxygen and some perl.
61
62
63
64 ldns(25 Apr 2005)