diff options
author | Marcin Siodelski <marcin@isc.org> | 2020-10-03 09:02:35 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2020-10-05 15:14:58 +0200 |
commit | 7041e0b50ffa875617427153cbd843ea52eebc37 (patch) | |
tree | 198bcd015e50a410ed0ace772b6e41b0abcf559a /src/lib/dhcpsrv/cfg_hosts.cc | |
parent | [#1428] Extended host tests (diff) | |
download | kea-7041e0b50ffa875617427153cbd843ea52eebc37.tar.xz kea-7041e0b50ffa875617427153cbd843ea52eebc37.zip |
[#1428] Final code cleanup
- Removed caching from getAllX functions in HostMgr
- Renamed setIPReservationUnique to setIPReservationsUnique
Diffstat (limited to 'src/lib/dhcpsrv/cfg_hosts.cc')
-rw-r--r-- | src/lib/dhcpsrv/cfg_hosts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcpsrv/cfg_hosts.cc b/src/lib/dhcpsrv/cfg_hosts.cc index bba9b39362..362767d86e 100644 --- a/src/lib/dhcpsrv/cfg_hosts.cc +++ b/src/lib/dhcpsrv/cfg_hosts.cc @@ -1167,7 +1167,7 @@ CfgHosts::del6(const SubnetID& /*subnet_id*/, } bool -CfgHosts::setIPReservationUnique(const bool unique) { +CfgHosts::setIPReservationsUnique(const bool unique) { ip_reservations_unique_ = unique; return (true); } |