2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-04 16:45:24 +00:00

Fix compile failures due to selective forwarding changes. They don't work,

but also don't appear to work on the release branch.
This commit is contained in:
Brian Wellington
2000-09-15 22:00:02 +00:00
parent 28e5aa3e6d
commit de4ef688d7
2 changed files with 10 additions and 6 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: byaddr_test.c,v 1.20 2000/08/09 00:09:32 gson Exp $ */ /* $Id: byaddr_test.c,v 1.21 2000/09/15 22:00:02 bwelling Exp $ */
/* /*
* Principal Author: Bob Halley * Principal Author: Bob Halley
@@ -37,6 +37,7 @@
#include <dns/cache.h> #include <dns/cache.h>
#include <dns/dispatch.h> #include <dns/dispatch.h>
#include <dns/events.h> #include <dns/events.h>
#include <dns/forward.h>
#include <dns/resolver.h> #include <dns/resolver.h>
#include <dns/result.h> #include <dns/result.h>
#include <dns/view.h> #include <dns/view.h>
@@ -203,8 +204,9 @@ main(int argc, char *argv[]) {
isc_sockaddr_fromin(&sa, &ina, 53); isc_sockaddr_fromin(&sa, &ina, 53);
ISC_LIST_APPEND(sal, &sa, link); ISC_LIST_APPEND(sal, &sa, link);
dns_resolver_setforwarders(view->resolver, &sal); RUNTIME_CHECK(dns_fwdtable_add(view->fwdtable, dns_rootname,
dns_resolver_setfwdpolicy(view->resolver, dns_fwdpolicy_only); &sal, dns_fwdpolicy_only)
== ISC_R_SUCCESS);
} }
dns_view_setcache(view, cache); dns_view_setcache(view, cache);

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: byname_test.c,v 1.22 2000/08/09 00:09:34 gson Exp $ */ /* $Id: byname_test.c,v 1.23 2000/09/15 22:00:00 bwelling Exp $ */
/* /*
* Principal Author: Bob Halley * Principal Author: Bob Halley
@@ -36,6 +36,7 @@
#include <dns/cache.h> #include <dns/cache.h>
#include <dns/dispatch.h> #include <dns/dispatch.h>
#include <dns/events.h> #include <dns/events.h>
#include <dns/forward.h>
#include <dns/log.h> #include <dns/log.h>
#include <dns/resolver.h> #include <dns/resolver.h>
#include <dns/result.h> #include <dns/result.h>
@@ -316,8 +317,9 @@ main(int argc, char *argv[]) {
isc_sockaddr_fromin(&sa, &ina, 53); isc_sockaddr_fromin(&sa, &ina, 53);
ISC_LIST_APPEND(sal, &sa, link); ISC_LIST_APPEND(sal, &sa, link);
dns_resolver_setforwarders(view->resolver, &sal); RUNTIME_CHECK(dns_fwdtable_add(view->fwdtable, dns_rootname,
dns_resolver_setfwdpolicy(view->resolver, dns_fwdpolicy_only); &sal, dns_fwdpolicy_only)
== ISC_R_SUCCESS);
} }
dns_view_setcache(view, cache); dns_view_setcache(view, cache);