Skip to content
GitLab
Projects
Groups
Snippets
/
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
29c5e3b8
Commit
29c5e3b8
authored
Aug 20, 1999
by
Brian Wellington
Browse files
Initialize and destroy the TSIG subsystem
parent
6d4886fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
bin/named/main.c
View file @
29c5e3b8
...
...
@@ -216,11 +216,17 @@ setup() {
if
(
result
!=
ISC_R_SUCCESS
)
early_fatal
(
"ns_server_init() failed: %s"
,
isc_result_totext
(
result
));
result
=
dns_tsig_init
(
ns_g_mctx
);
if
(
result
!=
ISC_R_SUCCESS
)
early_fatal
(
"dns_tsig_init() failed: %s"
,
isc_result_totext
(
result
));
}
static
void
cleanup
()
{
destroy_managers
();
dns_tsig_destroy
();
#if 0
isc_rwlock_destroy(&ns_g_viewlock);
#endif
...
...
bin/tests/res_test.c
View file @
29c5e3b8
...
...
@@ -45,6 +45,7 @@
#include
<dns/resolver.h>
#include
<dns/events.h>
#include
<dns/dispatch.h>
#include
<dns/tsig.h>
isc_mutex_t
lock
;
...
...
@@ -184,6 +185,8 @@ main(int argc, char *argv[]) {
socketmgr
=
NULL
;
RUNTIME_CHECK
(
isc_socketmgr_create
(
mctx
,
&
socketmgr
)
==
ISC_R_SUCCESS
);
RUNTIME_CHECK
(
dns_tsig_init
(
mctx
)
==
ISC_R_SUCCESS
);
argc
-=
optind
;
argv
+=
optind
;
...
...
@@ -239,6 +242,7 @@ main(int argc, char *argv[]) {
isc_socketmgr_destroy
(
&
socketmgr
);
isc_timermgr_destroy
(
&
timermgr
);
dns_tsig_destroy
();
if
(
verbose
)
isc_mem_stats
(
mctx
,
stdout
);
isc_mem_destroy
(
&
mctx
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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