Skip to content
GitLab
Menu
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
Kea
Commits
9d26dddc
Commit
9d26dddc
authored
Jan 03, 2017
by
Thomas Markwalder
Browse files
[5046] Pickup Francis' changes
parents
ebb863e3
f3f1c523
Changes
4
Show whitespace changes
Inline
Side-by-side
doc/guide/dhcp4-srv.xml
View file @
9d26dddc
...
...
@@ -3674,7 +3674,7 @@ src/lib/dhcpsrv/cfg_host_operations.cc -->
it supports the following statistics related commands:
<itemizedlist>
<listitem>
statistic-get
</listitem>
<listitem>
statistic-reset
</listitem>
<listitem>
statistic-reset
</listitem>
<listitem>
statistic-remove
</listitem>
<listitem>
statistic-get-all
</listitem>
<listitem>
statistic-reset-all
</listitem>
...
...
doc/guide/dhcp6-srv.xml
View file @
9d26dddc
...
...
@@ -4078,7 +4078,7 @@ If not specified, the default value is:
it supports the following statistics related commands:
<itemizedlist>
<listitem>
statistic-get
</listitem>
<listitem>
statistic-reset
</listitem>
<listitem>
statistic-reset
</listitem>
<listitem>
statistic-remove
</listitem>
<listitem>
statistic-get-all
</listitem>
<listitem>
statistic-reset-all
</listitem>
...
...
src/bin/dhcp4/ctrl_dhcp4_srv.cc
View file @
9d26dddc
...
...
@@ -63,7 +63,7 @@ ConstElementPtr
ControlledDhcpv4Srv
::
commandConfigReloadHandler
(
const
string
&
,
ConstElementPtr
args
)
{
// Use set-config as it handles logging and server config
return
(
commandSetConfigHandler
(
""
,
args
));
return
(
commandSetConfigHandler
(
"
set-config
"
,
args
));
}
ConstElementPtr
...
...
@@ -100,7 +100,7 @@ ControlledDhcpv4Srv::commandSetConfigHandler(const string&,
// configuration attempts.
CfgMgr
::
instance
().
rollback
();
// Logging is a sibling element and must be
be
parsed explicitly.
// Logging is a sibling element and must be parsed explicitly.
// The call to configureLogger parses the given Logging element if
// not null, into the staging config. Note this does not alter the
// current loggers, they remain in effect until we apply the
...
...
src/bin/dhcp6/ctrl_dhcp6_srv.cc
View file @
9d26dddc
...
...
@@ -68,7 +68,7 @@ ControlledDhcpv6Srv::commandLibReloadHandler(const string&, ConstElementPtr) {
ConstElementPtr
ControlledDhcpv6Srv
::
commandConfigReloadHandler
(
const
string
&
,
ConstElementPtr
args
)
{
// Use set-config as it handles logging and server config
return
(
commandSetConfigHandler
(
""
,
args
));
return
(
commandSetConfigHandler
(
"
set-config
"
,
args
));
}
ConstElementPtr
...
...
@@ -105,7 +105,7 @@ ControlledDhcpv6Srv::commandSetConfigHandler(const string&,
// configuration attempts.
CfgMgr
::
instance
().
rollback
();
// Logging is a sibling element and must be
be
parsed explicitly.
// Logging is a sibling element and must be parsed explicitly.
// The call to configureLogger parses the given Logging element if
// not null, into the staging config. Note this does not alter the
// current loggers, they remain in effect until we apply the
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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