stacksize, datasize, coresize and files options are now implemented

This commit is contained in:
Andreas Gustafsson 2000-11-28 21:43:37 +00:00
parent 1f1ff380e0
commit 54f6b2cfa8
2 changed files with 6 additions and 34 deletions

View file

@ -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

View file

@ -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 <config.h>
@ -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,