summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2020-11-01 14:41:05 +0100
committerFrancis Dupont <fdupont@isc.org>2020-11-18 13:41:51 +0100
commit58f93cf19d361550247f2a327226bf318d2ae983 (patch)
tree7ad2d132a91126e2285229bf76388fd78106fbc4 /src
parent[#1492] explicit messages for missing headers (diff)
downloadkea-58f93cf19d361550247f2a327226bf318d2ae983.tar.xz
kea-58f93cf19d361550247f2a327226bf318d2ae983.zip
[#1516] Fixed doxygen
Diffstat (limited to 'src')
-rw-r--r--src/lib/dhcpsrv/free_lease_queue.h3
-rw-r--r--src/lib/dhcpsrv/ip_range.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/dhcpsrv/free_lease_queue.h b/src/lib/dhcpsrv/free_lease_queue.h
index ad766a6c12..3a44afd17e 100644
--- a/src/lib/dhcpsrv/free_lease_queue.h
+++ b/src/lib/dhcpsrv/free_lease_queue.h
@@ -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.
diff --git a/src/lib/dhcpsrv/ip_range.h b/src/lib/dhcpsrv/ip_range.h
index dd40fc1ecd..b511ca7b62 100644
--- a/src/lib/dhcpsrv/ip_range.h
+++ b/src/lib/dhcpsrv/ip_range.h
@@ -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,