diff --git a/src/lib/dhcpsrv/memfile_lease_mgr.h b/src/lib/dhcpsrv/memfile_lease_mgr.h index df6475c2944a914e87c1d52099bd893142db97d3..6937e425068b15c38fb577573200a3feb53c6cca 100644 --- a/src/lib/dhcpsrv/memfile_lease_mgr.h +++ b/src/lib/dhcpsrv/memfile_lease_mgr.h @@ -54,7 +54,6 @@ public: /// @brief Adds an IPv4 lease. /// - /// @todo Not implemented yet /// @param lease lease to be added virtual bool addLease(const Lease4Ptr& lease); @@ -65,7 +64,6 @@ public: /// @brief Returns existing IPv4 lease for specified IPv4 address. /// - /// @todo Not implemented yet /// @param addr address of the searched lease /// /// @return a collection of leases @@ -73,8 +71,6 @@ public: /// @brief Returns existing IPv4 leases for specified hardware address. /// - /// @todo Not implemented yet - /// /// Although in the usual case there will be only one lease, for mobile /// clients or clients with multiple static/fixed/reserved leases there /// can be more than one. Thus return type is a container, not a single @@ -88,8 +84,6 @@ public: /// @brief Returns existing IPv4 leases for specified hardware address /// and a subnet /// - /// @todo Not implemented yet - /// /// There can be at most one lease for a given HW address in a single /// pool, so this method with either return a single lease or NULL. /// @@ -102,8 +96,6 @@ public: /// @brief Returns existing IPv4 lease for specified client-id /// - /// @todo Not implemented yet - /// /// @param clientid client identifier virtual Lease4Collection getLease4(const ClientId& clientid) const; @@ -127,8 +119,6 @@ public: /// There can be at most one lease for a given HW address in a single /// pool, so this method with either return a single lease or NULL. /// - /// @todo Not implemented yet - /// /// @param clientid client identifier /// @param subnet_id identifier of the subnet that lease must belong to /// @@ -153,9 +143,7 @@ public: /// @return collection of IPv6 leases virtual Lease6Collection getLease6(const DUID& duid, uint32_t iaid) const; - /// @brief Returns existing IPv6 lease for a given DUID+IA combination - /// - /// @todo Not implemented yet + /// @brief Returns existing IPv6 lease for a given DUID/IA/subnet-id tuple /// /// @param duid client DUID /// @param iaid IA identifier @@ -173,7 +161,7 @@ public: /// If no such lease is present, an exception will be thrown. virtual void updateLease4(const Lease4Ptr& lease4); - /// @brief Updates IPv4 lease. + /// @brief Updates IPv6 lease. /// /// @todo Not implemented yet ///