From b28affc652da3bcea8a4ada5211c261a829b05ba Mon Sep 17 00:00:00 2001 From: James Brister Date: Tue, 25 Jul 2000 20:17:52 +0000 Subject: [PATCH] Added missing prototypes. --- lib/dns/include/dns/confview.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lib/dns/include/dns/confview.h b/lib/dns/include/dns/confview.h index 9ec7ca1a90..ad9f85dd9c 100644 --- a/lib/dns/include/dns/confview.h +++ b/lib/dns/include/dns/confview.h @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: confview.h,v 1.32 2000/07/25 17:55:43 brister Exp $ */ +/* $Id: confview.h,v 1.33 2000/07/25 20:17:52 brister Exp $ */ #ifndef DNS_CONFVIEW_H #define DNS_CONFVIEW_H 1 @@ -351,6 +351,20 @@ isc_result_t dns_c_view_setrfc2308type1(dns_c_view_t *view, isc_result_t dns_c_view_unsetrfc2308type1(dns_c_view_t *view); +isc_result_t dns_c_view_getgluefromauth(dns_c_view_t *view, + isc_boolean_t *retval); +isc_result_t dns_c_view_setgluefromauth(dns_c_view_t *view, + isc_boolean_t newval); +isc_result_t dns_c_view_unsetgluefromauth(dns_c_view_t *view); + + +isc_result_t dns_c_view_getgluefromcache(dns_c_view_t *view, + isc_boolean_t *retval); +isc_result_t dns_c_view_setgluefromcache(dns_c_view_t *view, + isc_boolean_t newval); +isc_result_t dns_c_view_unsetgluefromcache(dns_c_view_t *view); + + isc_result_t dns_c_view_settransfersource(dns_c_view_t *view, isc_sockaddr_t transfer_source);