2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

conform to dns_view_createresolver() API change

This commit is contained in:
Bob Halley 2000-01-26 16:59:05 +00:00
parent 0df20c101e
commit 5bd937c666
5 changed files with 5 additions and 5 deletions

View File

@ -90,7 +90,7 @@ create_view(isc_mem_t *mctx)
* XXXMLG hardwired number of tasks.
*/
result = dns_view_createresolver(view, taskmgr, 16, sockmgr,
timermgr, NULL);
timermgr, 0, NULL, NULL);
if (result != ISC_R_SUCCESS)
goto out;

View File

@ -156,7 +156,7 @@ configure_view(dns_view_t *view, dns_c_ctx_t *cctx, isc_mem_t *mctx)
*/
CHECK(dns_view_createresolver(view, ns_g_taskmgr, 31,
ns_g_socketmgr, ns_g_timermgr,
NULL));
0, NULL, NULL));
/*
* We have default hints for class IN.

View File

@ -205,7 +205,7 @@ create_view(void)
* see if we are dealing with a shared dispatcher in this view.
*/
result = dns_view_createresolver(view, taskmgr, 16, socketmgr,
timermgr, NULL);
timermgr, 0, NULL, NULL);
check_result(result, "dns_view_createresolver()");
rootdb = NULL;

View File

@ -159,7 +159,7 @@ main(int argc, char *argv[]) {
&view) == ISC_R_SUCCESS);
RUNTIME_CHECK(dns_view_createresolver(view, taskmgr, 10, socketmgr,
timermgr, NULL) ==
timermgr, 0, NULL, NULL) ==
DNS_R_SUCCESS);
{

View File

@ -286,7 +286,7 @@ main(int argc, char *argv[]) {
&view) == ISC_R_SUCCESS);
RUNTIME_CHECK(dns_view_createresolver(view, taskmgr, 10, socketmgr,
timermgr, NULL) ==
timermgr, 0, NULL, NULL) ==
DNS_R_SUCCESS);
{