diff options
author | Francis Dupont <fdupont@isc.org> | 2017-04-18 08:16:58 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2017-04-18 08:16:58 +0200 |
commit | da72f8e0df330e9242c0506b2d39a67cb50b78f9 (patch) | |
tree | e0e89771307eaf053cbfdc841799800cbdc2b27e | |
parent | [5213] Handling of parameterless commands improved (diff) | |
download | kea-da72f8e0df330e9242c0506b2d39a67cb50b78f9.tar.xz kea-da72f8e0df330e9242c0506b2d39a67cb50b78f9.zip |
[5213] Last set-config -> config-set
-rw-r--r-- | src/bin/agent/agent_hooks.dox | 2 | ||||
-rw-r--r-- | src/bin/dhcp4/ctrl_dhcp4_srv.h | 4 | ||||
-rw-r--r-- | src/bin/dhcp4/dhcp4_hooks.dox | 2 | ||||
-rw-r--r-- | src/bin/dhcp6/ctrl_dhcp6_srv.h | 4 | ||||
-rw-r--r-- | src/bin/dhcp6/dhcp6_hooks.dox | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/agent/agent_hooks.dox b/src/bin/agent/agent_hooks.dox index 7155a325f7..20bf584eff 100644 --- a/src/bin/agent/agent_hooks.dox +++ b/src/bin/agent/agent_hooks.dox @@ -46,7 +46,7 @@ command. will only return the list of commands supported by the hook library. The callout can modify the command arguments to influence the command processing by the Command Manager. For example, it may freely modify - the configuration received in 'set-config' before it is processed by + the configuration received in 'config-set' before it is processed by the server. The SKIP action is not set in this case. - <b>Next step status</b>: if any callout sets the next step action to SKIP, diff --git a/src/bin/dhcp4/ctrl_dhcp4_srv.h b/src/bin/dhcp4/ctrl_dhcp4_srv.h index 4fc38365e8..eec3688585 100644 --- a/src/bin/dhcp4/ctrl_dhcp4_srv.h +++ b/src/bin/dhcp4/ctrl_dhcp4_srv.h @@ -195,9 +195,9 @@ private: commandConfigWriteHandler(const std::string& command, isc::data::ConstElementPtr args); - /// @brief handler for processing 'set-config' command + /// @brief handler for processing 'config-set' command /// - /// This handler processes set-config command, which processes + /// This handler processes config-set command, which processes /// configuration specified in args parameter. /// @param command (parameter ignored) /// @param args configuration to be processed. Expected format: diff --git a/src/bin/dhcp4/dhcp4_hooks.dox b/src/bin/dhcp4/dhcp4_hooks.dox index 7dae8825e5..62e7c6c46a 100644 --- a/src/bin/dhcp4/dhcp4_hooks.dox +++ b/src/bin/dhcp4/dhcp4_hooks.dox @@ -331,7 +331,7 @@ to the end of this list. will only return the list of commands supported by the hook library. The callout can modify the command arguments to influence the command processing by the Command Manager. For example, it may freely modify - the configuration received in 'set-config' before it is processed by + the configuration received in 'config-set' before it is processed by the server. The SKIP action is not set in this case. - <b>Next step status</b>: if any callout sets the next step action to SKIP, diff --git a/src/bin/dhcp6/ctrl_dhcp6_srv.h b/src/bin/dhcp6/ctrl_dhcp6_srv.h index 0395121a38..b58e329c01 100644 --- a/src/bin/dhcp6/ctrl_dhcp6_srv.h +++ b/src/bin/dhcp6/ctrl_dhcp6_srv.h @@ -195,9 +195,9 @@ private: commandConfigWriteHandler(const std::string& command, isc::data::ConstElementPtr args); - /// @brief handler for processing 'set-config' command + /// @brief handler for processing 'config-set' command /// - /// This handler processes set-config command, which processes + /// This handler processes config-set command, which processes /// configuration specified in args parameter. /// @param command (parameter ignored) /// @param args configuration to be processed. Expected format: diff --git a/src/bin/dhcp6/dhcp6_hooks.dox b/src/bin/dhcp6/dhcp6_hooks.dox index 20b260628d..894b4da2f0 100644 --- a/src/bin/dhcp6/dhcp6_hooks.dox +++ b/src/bin/dhcp6/dhcp6_hooks.dox @@ -373,7 +373,7 @@ to the end of this list. will only return the list of commands supported by the hook library. The callout can modify the command arguments to influence the command processing by the Command Manager. For example, it may freely modify - the configuration received in 'set-config' before it is processed by + the configuration received in 'config-set' before it is processed by the server. The SKIP action is not set in this case. - <b>Next step status</b>: if any callout sets the next step action to SKIP, |