diff options
author | Thomas Markwalder <tmark@isc.org> | 2024-12-16 14:09:30 +0100 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2024-12-16 16:15:09 +0100 |
commit | 5108d12a8c5fa338c9fd914438275d2f3a7f04fd (patch) | |
tree | 3b2bc328fd27a133d309212a9c9961038eb953cb | |
parent | [#2819] Remove premium dir (diff) | |
download | kea-5108d12a8c5fa338c9fd914438275d2f3a7f04fd.tar.xz kea-5108d12a8c5fa338c9fd914438275d2f3a7f04fd.zip |
[#2819] Fixed misspellings
-rw-r--r-- | src/lib/dhcpsrv/dhcpsrv_messages.mes | 4 | ||||
-rw-r--r-- | src/lib/dhcpsrv/ncr_generator.h | 2 | ||||
-rw-r--r-- | src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc | 12 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/dhcpsrv/dhcpsrv_messages.mes b/src/lib/dhcpsrv/dhcpsrv_messages.mes index 6d6185a3e9..9c0e5efb19 100644 --- a/src/lib/dhcpsrv/dhcpsrv_messages.mes +++ b/src/lib/dhcpsrv/dhcpsrv_messages.mes @@ -968,14 +968,14 @@ message) that is unknown to the software. This is a configuration error. Logged at debug log level 55. A debug message issued when the DDNS TTL value calculated using the ddns-ttl-percent if specified or (0.33 if not) is too small. Kea will -ignore the value and use the minimum (ddns-ttl-min if specifed or 600 +ignore the value and use the minimum (ddns-ttl-min if specified or 600 seconds if not). The message details include the percentage, the lease life time, the calculated TTL, and the value actually used. % DHCPSRV_DDNS_TTL_TOO_LARGE %1 of lease life time %2 is %3, using maximum of %4 instead. Logged at debug log level 55. A debug message issued when the DDNS TTL value calculated using the -ddns-ttl-percent if specfieed or (0.33 if not) is larger than the +ddns-ttl-percent if specfied or (0.33 if not) is larger than the the specified value of ddns-ttl-max. Kea will ignore the value and use the specified maximum instead. The message details include the percentage, the lease life time, the calculated TTL, and the value diff --git a/src/lib/dhcpsrv/ncr_generator.h b/src/lib/dhcpsrv/ncr_generator.h index e81b37b635..7521c23917 100644 --- a/src/lib/dhcpsrv/ncr_generator.h +++ b/src/lib/dhcpsrv/ncr_generator.h @@ -60,7 +60,7 @@ void queueNCR(const dhcp_ddns::NameChangeType& chg_type, const Lease6Ptr& lease) /// @param lease_life_time valid life time of the lease /// @param ddns_ttl_percent optional percentage to use in calculation /// @param ddns_ttl optional percentage to use in calculation -/// @param ddns_ttl_min optional minium TTL to allow +/// @param ddns_ttl_min optional minimum TTL to allow /// @param ddns_ttl_max optional maximum TTL to allow /// /// @return the calculated TTL. diff --git a/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc b/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc index a9d76564c0..9ea17057c3 100644 --- a/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc +++ b/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc @@ -73,7 +73,7 @@ public: CfgMgr::instance().clear(); } - // Verifies valid permuatations of ddns-ttl-percent, ddns-ttl, + // Verifies valid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for SubnetX. template<typename ParserType, typename NetworkPtrType> void validDdnsTtlParmatersSubnet(int family) { @@ -167,7 +167,7 @@ public: } } - // Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl, + // Verifies invalid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for SubnetX. template<typename ParserType> void invalidDdnsTtlParmatersSubnet(int family) { @@ -4270,25 +4270,25 @@ TEST_F(DhcpParserTest, deprecatedClientClassPool6) { " 'client-classes'. Use only the latter."); } -// Verifies valid permuatations of ddns-ttl-percent, ddns-ttl, +// Verifies valid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for Subnet4. TEST_F(DhcpParserTest, validDdnsTtlParmatersSubnet4) { validDdnsTtlParmatersSubnet<Subnet4ConfigParser, Subnet4Ptr>(AF_INET); } -// Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl, +// Verifies invalid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for Subnet4. TEST_F(DhcpParserTest, invalidDdnsTtlParmatersSubnet4) { invalidDdnsTtlParmatersSubnet<Subnet4ConfigParser>(AF_INET); } -// Verifies valid permuatations of ddns-ttl-percent, ddns-ttl, +// Verifies valid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for Subnet6. TEST_F(DhcpParserTest, validDdnsTtlParmatersSubnet6) { validDdnsTtlParmatersSubnet<Subnet6ConfigParser, Subnet6Ptr>(AF_INET6); } -// Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl, +// Verifies invalid permutations of ddns-ttl-percent, ddns-ttl, // ddns-ttl-min, and ddns-ttl-max values for Subnet6. TEST_F(DhcpParserTest, invalidDdnsTtlParmatersSubnet6) { invalidDdnsTtlParmatersSubnet<Subnet6ConfigParser>(AF_INET6); |