Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
31b6349d
Commit
31b6349d
authored
Nov 05, 1999
by
Brian Wellington
Browse files
added dns_tkey_destroy
parent
61b103da
Changes
3
Show whitespace changes
Inline
Side-by-side
bin/named/main.c
View file @
31b6349d
...
...
@@ -32,6 +32,7 @@
#include <dns/dbtable.h>
#include <dns/tsig.h>
#include <dns/tkey.h>
#include <dns/result.h>
#include <dst/result.h>
...
...
@@ -280,6 +281,7 @@ static void
cleanup
()
{
destroy_managers
();
dns_tsig_destroy
();
dns_tkey_destroy
();
isc_rwlock_destroy
(
&
ns_g_viewlock
);
isc_log_write
(
ns_g_lctx
,
NS_LOGCATEGORY_GENERAL
,
NS_LOGMODULE_MAIN
,
ISC_LOG_NOTICE
,
"exiting"
);
...
...
bin/tests/tkey_test.c
View file @
31b6349d
...
...
@@ -345,6 +345,7 @@ main(int argc, char *argv[]) {
isc_timermgr_destroy
(
&
timermgr
);
dns_tsig_destroy
();
dns_tkey_destroy
();
if
(
verbose
)
isc_mem_stats
(
mctx
,
stdout
);
isc_mem_destroy
(
&
mctx
);
...
...
lib/dns/include/dns/tkey.h
View file @
31b6349d
...
...
@@ -52,6 +52,12 @@ dns_tkey_init(isc_log_t *lctx, dns_c_ctx_t *cfg, isc_mem_t *mctx);
* return codes from dns_name_fromtext()
*/
void
dns_tkey_destroy
(
void
);
/*
* Frees all data associated with the TKEY subsystem
*/
isc_result_t
dns_tkey_processquery
(
dns_message_t
*
msg
);
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment