diff --git a/doc/misc/options b/doc/misc/options index 4d4adcf053..dd00ab1dcf 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -1,7 +1,7 @@ Copyright (C) 2000 Internet Software Consortium. See COPYRIGHT in the source root or http://isc.org/copyright.html for terms. -$Id: options,v 1.46 2000/11/28 21:27:45 gson Exp $ +$Id: options,v 1.47 2000/11/28 21:43:36 gson Exp $ This is a summary of the implementation status of the various named.conf options in BIND 9. @@ -88,10 +88,10 @@ options { [ provide-ixfr yes_or_no; ] Yes* [ maintain-ixfr-base yes_or_no; ] Obsolete [ max-ixfr-log-size number; ] Obsolete - [ coresize size_spec ; ] No - [ datasize size_spec ; ] No - [ files size_spec ; ] No - [ stacksize size_spec ; ] No + [ coresize size_spec ; ] Yes + [ datasize size_spec ; ] Yes + [ files size_spec ; ] Yes + [ stacksize size_spec ; ] Yes [ cleaning-interval number; ] Yes [ heartbeat-interval number; ] Yes [ interface-interval number; ] Yes diff --git a/lib/dns/config/confctx.c b/lib/dns/config/confctx.c index dec41fa8ac..0ea656ba18 100644 --- a/lib/dns/config/confctx.c +++ b/lib/dns/config/confctx.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: confctx.c,v 1.107 2000/11/28 21:20:49 gson Exp $ */ +/* $Id: confctx.c,v 1.108 2000/11/28 21:43:37 gson Exp $ */ #include @@ -468,34 +468,6 @@ dns_c_checkconfig(dns_c_ctx_t *cfg) "option 'max-ixfr-log-size' is obsolete"); } - if (dns_c_ctx_getcoresize(cfg, &uintval) != ISC_R_NOTFOUND) { - isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG, - DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "option 'coresize' is not yet " - "implemented"); - } - - if (dns_c_ctx_getdatasize(cfg, &uintval) != ISC_R_NOTFOUND) { - isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG, - DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "option 'datasize' is not yet " - "implemented"); - } - - if (dns_c_ctx_getfiles(cfg, &uintval) != ISC_R_NOTFOUND) { - isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG, - DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "option 'files' is not yet " - "implemented"); - } - - if (dns_c_ctx_getstacksize(cfg, &uintval) != ISC_R_NOTFOUND) { - isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG, - DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "option 'stacksize' is not yet " - "implemented"); - } - if (dns_c_ctx_getstatsinterval(cfg, &uintval) != ISC_R_NOTFOUND) { isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG, DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,