]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[397-cb-implement-mysqlconfigbackenddhcpv6] Checkpoint before code move
authorFrancis Dupont <fdupont@isc.org>
Fri, 12 Apr 2019 13:32:45 +0000 (15:32 +0200)
committerFrancis Dupont <fdupont@isc.org>
Thu, 18 Apr 2019 13:52:51 +0000 (15:52 +0200)
src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.h
src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.h

index 6797ca0d262af80c7f892cc207c8c9aa0b7aae35..df2b7dbe251d3bd32c8a78eee03fe1f352cddd06 100644 (file)
@@ -35,7 +35,6 @@ public:
     /// @param server_selector Server selector.
     /// @param subnet_prefix Prefix of the subnet to be retrieved.
     /// @return Pointer to the retrieved subnet or NULL if not found.
-    /// @throw NotImplemented if server selector is "unassigned".
     virtual Subnet4Ptr
     getSubnet4(const db::ServerSelector& server_selector,
                const std::string& subnet_prefix) const;
@@ -45,7 +44,6 @@ public:
     /// @param server_selector Server selector.
     /// @param subnet_id Identifier of a subnet to be retrieved.
     /// @return Pointer to the retrieved subnet or NULL if not found.
-    /// @throw NotImplemented if server selector is "unassigned".
     virtual Subnet4Ptr
     getSubnet4(const db::ServerSelector& server_selector, const SubnetID& subnet_id) const;
 
index cc8726cb4bb778b2026f216acb716af5d5fa1f07..502c77a2d9962cb58c251336dc1aa95ed5162c3a 100644 (file)
@@ -35,7 +35,6 @@ public:
     /// @param server_selector Server selector.
     /// @param subnet_prefix Prefix of the subnet to be retrieved.
     /// @return Pointer to the retrieved subnet or NULL if not found.
-    /// @throw NotImplemented if server selector is "unassigned".
     virtual Subnet6Ptr
     getSubnet6(const db::ServerSelector& server_selector,
                const std::string& subnet_prefix) const;
@@ -45,7 +44,6 @@ public:
     /// @param server_selector Server selector.
     /// @param subnet_id Identifier of a subnet to be retrieved.
     /// @return Pointer to the retrieved subnet or NULL if not found.
-    /// @throw NotImplemented if server selector is "unassigned".
     virtual Subnet6Ptr
     getSubnet6(const db::ServerSelector& server_selector, const SubnetID& subnet_id) const;
 
@@ -269,13 +267,13 @@ public:
                         const asiolink::IOAddress& pool_end_address,
                         const OptionDescriptorPtr& option);
 
-    /// @brief Creates or updates pd pool level option.
+    /// @brief Creates or updates prefix delegation pool level option.
     ///
     /// @param server_selector Server selector.
-    /// @param pd_pool_prefix Address part of the prefix of the pd pool
-    /// to which the option belongs.
-    /// @param pd_pool_prefix_length Prefix length of the pd pool to which
-    /// the option belongs.
+    /// @param pd_pool_prefix Address part of the prefix of the prefix
+    /// delegation pool to which the option belongs.
+    /// @param pd_pool_prefix_length Prefix length of the prefix
+    /// delegation pool to which the option belongs.
     /// @param option Option to be added or updated.
     /// @throw NotImplemented if server selector is "unassigned".
     virtual void
@@ -423,13 +421,13 @@ public:
                   const uint16_t code,
                   const std::string& space);
 
-    /// @brief Deletes pd pool level option.
+    /// @brief Deletes prefix delegation pool level option.
     ///
     /// @param server_selector Server selector.
-    /// @param pool_start_address Lower bound address of the pool to which
-    /// deleted option belongs.
-    /// @param pool_end_address Upper bound address of the pool to which the
-    /// deleted option belongs.
+    /// @param pool_start_address Lower bound address of the prefix
+    /// delegationpool to which deleted option belongs.
+    /// @param pool_end_address Upper bound address of the prefix
+    /// delegation pool to which the deleted option belongs.
     /// @param code Code of the deleted option.
     /// @param space Option space of the deleted option.
     /// @return Number of deleted options.