diff options
author | Francis Dupont <fdupont@isc.org> | 2019-07-10 00:26:01 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2019-07-12 19:16:11 +0200 |
commit | f25559cb7bdefc45c03c03d86f288eac7c1fbc97 (patch) | |
tree | a74b29bec1b3ef431ce9fd30c614252572a92780 /src/lib/dhcpsrv/config_backend_dhcp6.h | |
parent | [#717,!417] Added ChangeLog for #717. (diff) | |
download | kea-f25559cb7bdefc45c03c03d86f288eac7c1fbc97.tar.xz kea-f25559cb7bdefc45c03c03d86f288eac7c1fbc97.zip |
[712-cb_cmds-add-support-for-server-tags-in-the-shared-networks] Updated CB API description and test utils
Diffstat (limited to 'src/lib/dhcpsrv/config_backend_dhcp6.h')
-rw-r--r-- | src/lib/dhcpsrv/config_backend_dhcp6.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/lib/dhcpsrv/config_backend_dhcp6.h b/src/lib/dhcpsrv/config_backend_dhcp6.h index 71c811439a..f65244fb50 100644 --- a/src/lib/dhcpsrv/config_backend_dhcp6.h +++ b/src/lib/dhcpsrv/config_backend_dhcp6.h @@ -186,7 +186,7 @@ public: /// @brief Retrieves single option definition by code and space. /// /// Allowed server selectors: ALL, ONE. - /// Not allowed server selector: ANY, UNASSIGNED, MULTIPLE. + /// Not allowed server selectors: ANY, UNASSIGNED, MULTIPLE. /// /// @param server_selector Server selector. /// @param code Code of the option to be retrieved. @@ -224,7 +224,7 @@ public: /// @brief Retrieves single option by code and space. /// /// Allowed server selectors: ALL, ONE. - /// Not allowed server selector: ANY, UNASSIGNED, MULTIPLE. + /// Not allowed server selectors: ANY, UNASSIGNED, MULTIPLE. /// /// @param server_selector Server selector. /// @param code Option code. @@ -496,7 +496,7 @@ public: /// /// @param server_selector Server selector. /// @param name Name of the shared network to be deleted. - /// @return Number of deleted shared networks.. + /// @return Number of deleted shared networks. virtual uint64_t deleteSharedNetwork6(const db::ServerSelector& server_selector, const std::string& name) = 0; @@ -521,7 +521,8 @@ public: /// @param space Option space of the option to be deleted. /// @return Number of deleted option definitions. virtual uint64_t - deleteOptionDef6(const db::ServerSelector& server_selector, const uint16_t code, + deleteOptionDef6(const db::ServerSelector& server_selector, + const uint16_t code, const std::string& space) = 0; /// @brief Deletes all option definitions. @@ -544,7 +545,8 @@ public: /// @param space Option space of the option to be deleted. /// @return Number of deleted options. virtual uint64_t - deleteOption6(const db::ServerSelector& server_selector, const uint16_t code, + deleteOption6(const db::ServerSelector& server_selector, + const uint16_t code, const std::string& space) = 0; /// @brief Deletes shared network level option. @@ -572,8 +574,10 @@ public: /// @param space Option space of the deleted option. /// @return Number of deleted options. virtual uint64_t - deleteOption6(const db::ServerSelector& server_selector, const SubnetID& subnet_id, - const uint16_t code, const std::string& space) = 0; + deleteOption6(const db::ServerSelector& server_selector, + const SubnetID& subnet_id, + const uint16_t code, + const std::string& space) = 0; /// @brief Deletes pool level option. /// |