]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1516] Fixed doxygen
authorFrancis Dupont <fdupont@isc.org>
Sun, 1 Nov 2020 13:41:05 +0000 (14:41 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 18 Nov 2020 12:41:51 +0000 (13:41 +0100)
src/lib/dhcpsrv/free_lease_queue.h
src/lib/dhcpsrv/ip_range.h

index ad766a6c1227c71cd6633d92e5aba23fed18e8ec..3a44afd17e644f176fd5becdf5f266caf3457367 100644 (file)
@@ -153,6 +153,7 @@ public:
     /// appropriate prefix range for that prefix.
     ///
     /// @param prefix delegated prefix to be appended to the range queue.
+    /// @param delegated_length delegated prefix length.
     /// @return true if the range was found and the prefix was appended,
     /// false otherwise.
     bool append(const asiolink::IOAddress& prefix, const uint8_t delegated_length);
@@ -206,6 +207,7 @@ public:
     /// that address.
     ///
     /// @param range range from which the free address should be removed.
+    /// @param address address to remove.
     /// @return true if the address was found and successfully removed,
     /// false otherwise.
     /// @throw BadValue if the range does not exist.
@@ -217,6 +219,7 @@ public:
     /// that delegated prefix.
     ///
     /// @param range range from which the free prefix should be removed.
+    /// @param prefix prefix to remove.
     /// @return true if the prefix was found and successfully removed,
     /// false otherwise.
     /// @throw BadValue if the range does not exist.
index dd40fc1ecd8814c380995e80942a1bc4d285f060..b511ca7b621d41fad0f721e306123aadb0fc1ec9 100644 (file)
@@ -54,6 +54,7 @@ struct PrefixRange {
     ///
     /// @param start beginning of the prefix range.
     /// @param end end of the prefix range.
+    /// @param delegated delegated prefix length.
     /// @throw BadValue if the values provided to the constructor are invalid,
     /// e.g. it is not IPv6 prefix.
     PrefixRange(const asiolink::IOAddress& start, const asiolink::IOAddress& end,