Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
41812185
Commit
41812185
authored
Oct 17, 2004
by
Mark Andrews
Browse files
1747. [bug] BIND 8 compatability: named/named-checkconf failed
to parse "host-statistics-max" in named.conf.
parent
61a4d5e7
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
41812185
1747. [bug] BIND 8 compatability: named/named-checkconf failed
to parse "host-statistics-max" in named.conf.
1746. [func] Make public the function to read a key file,
dst_key_read_public(). [RT #12450]
...
...
bin/named/named.conf.docbook
View file @
41812185
...
...
@@ -15,7 +15,7 @@
- PERFORMANCE OF THIS SOFTWARE.
-->
<!-- $Id: named.conf.docbook,v 1.
2
2004/10/
0
7
02:15:11
marka Exp $ -->
<!-- $Id: named.conf.docbook,v 1.
3
2004/10/
1
7
23:11:30
marka Exp $ -->
<refentry>
<refentryinfo>
...
...
@@ -177,6 +177,7 @@ options {
files
<replaceable>
size
</replaceable>
;
heartbeat-interval
<replaceable>
integer
</replaceable>
;
host-statistics
<replaceable>
boolean
</replaceable>
; // not implemented
host-statistics-max
<replaceable>
number
</replaceable>
; // not implemented
hostname (
<replaceable>
quoted_string
</replaceable>
| none );
interface-interval
<replaceable>
integer
</replaceable>
;
listen-on
<optional>
port
<replaceable>
integer
</replaceable>
</optional>
{
<replaceable>
address_match_element
</replaceable>
; ... };
...
...
doc/arm/Bv9ARM-book.xml
View file @
41812185
...
...
@@ -2,7 +2,7 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN"
"http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">
<!-- File: $Id: Bv9ARM-book.xml,v 1.25
6
2004/10/1
4 00:49:34
marka Exp $ -->
<!-- File: $Id: Bv9ARM-book.xml,v 1.25
7
2004/10/1
7 23:11:29
marka Exp $ -->
<book>
<title>
BIND 9 Administrator Reference Manual
</title>
...
...
@@ -2712,6 +2712,7 @@ statement in the <filename>named.conf</filename> file:</para>
<optional>
flush-zones-on-shutdown
<replaceable>
yes_or_no
</replaceable>
;
</optional>
<optional>
has-old-clients
<replaceable>
yes_or_no
</replaceable>
;
</optional>
<optional>
host-statistics
<replaceable>
yes_or_no
</replaceable>
;
</optional>
<optional>
host-statistics-max
<replaceable>
number
</replaceable>
;
</optional>
<optional>
minimal-responses
<replaceable>
yes_or_no
</replaceable>
;
</optional>
<optional>
multiple-cnames
<replaceable>
yes_or_no
</replaceable>
;
</optional>
<optional>
notify
<replaceable>
yes_or_no
</replaceable>
|
<replaceable>
explicit
</replaceable>
|
<replaceable>
master-only
</replaceable>
;
</optional>
...
...
@@ -3854,6 +3855,12 @@ will be automatically removed. The default is
<literal>
unlimited
</literal>
.
</para>
</listitem></varlistentry>
<varlistentry><term><command>
host-statistics-max
</command></term>
<listitem><para>
In BIND 8, specifies the maximum number of host statistic
entries to be kept.
Not implemented in BIND 9.
</para></listitem></varlistentry>
<varlistentry><term><command>
recursive-clients
</command></term>
<listitem><para>
The maximum number of simultaneous recursive lookups
the server will perform on behalf of clients. The default is
...
...
lib/isccfg/namedconf.c
View file @
41812185
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: namedconf.c,v 1.3
8
2004/10/1
4 00:49:34
marka Exp $ */
/* $Id: namedconf.c,v 1.3
9
2004/10/1
7 23:11:29
marka Exp $ */
#include
<config.h>
...
...
@@ -588,6 +588,7 @@ options_clauses[] = {
{
"has-old-clients"
,
&
cfg_type_boolean
,
CFG_CLAUSEFLAG_OBSOLETE
},
{
"heartbeat-interval"
,
&
cfg_type_uint32
,
0
},
{
"host-statistics"
,
&
cfg_type_boolean
,
CFG_CLAUSEFLAG_NOTIMP
},
{
"host-statistics-max"
,
&
cfg_type_uint32
,
CFG_CLAUSEFLAG_NOTIMP
},
{
"hostname"
,
&
cfg_type_qstringornone
,
0
},
{
"interface-interval"
,
&
cfg_type_uint32
,
0
},
{
"listen-on"
,
&
cfg_type_listenon
,
CFG_CLAUSEFLAG_MULTI
},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment