mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 14:07:59 +00:00
global lame-ttl option was not being printed when config structures were
written out.
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
248. [bug] global lame-ttl option was not being printed when
|
||||||
|
config structures were written out.
|
||||||
|
|
||||||
247. [cleanup] Rename cache-size config option to max-cache-size.
|
247. [cleanup] Rename cache-size config option to max-cache-size.
|
||||||
|
|
||||||
246. [func] Rename global option cachesize to cache-size and
|
246. [func] Rename global option cachesize to cache-size and
|
||||||
|
@@ -120,7 +120,7 @@ options {
|
|||||||
query-source-v6 address 8:7:6:5:4:3:2:1 port *;
|
query-source-v6 address 8:7:6:5:4:3:2:1 port *;
|
||||||
query-source port * address 10.0.0.54 ;
|
query-source port * address 10.0.0.54 ;
|
||||||
|
|
||||||
lame-ttl 477;
|
lame-ttl 444;
|
||||||
|
|
||||||
max-transfer-time-in 300;
|
max-transfer-time-in 300;
|
||||||
max-transfer-time-out 10;
|
max-transfer-time-out 10;
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: confctx.c,v 1.66 2000/06/09 15:03:22 brister Exp $ */
|
/* $Id: confctx.c,v 1.67 2000/06/09 15:54:26 brister Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -940,8 +940,7 @@ dns_c_ctx_optionsprint(FILE *fp, int indent, dns_c_options_t *options)
|
|||||||
PRINT_AS_MINUTES(max_transfer_idle_in, "max-transfer-idle-in");
|
PRINT_AS_MINUTES(max_transfer_idle_in, "max-transfer-idle-in");
|
||||||
PRINT_AS_MINUTES(max_transfer_idle_out, "max-transfer-idle-out");
|
PRINT_AS_MINUTES(max_transfer_idle_out, "max-transfer-idle-out");
|
||||||
|
|
||||||
/* XXX LAMETTL ??? */
|
PRINT_INTEGER(lamettl, "lame-ttl");
|
||||||
|
|
||||||
PRINT_INTEGER(tcp_clients, "tcp-clients");
|
PRINT_INTEGER(tcp_clients, "tcp-clients");
|
||||||
PRINT_INTEGER(recursive_clients, "recursive-clients");
|
PRINT_INTEGER(recursive_clients, "recursive-clients");
|
||||||
PRINT_INTEGER(min_roots, "min-roots");
|
PRINT_INTEGER(min_roots, "min-roots");
|
||||||
|
Reference in New Issue
Block a user