]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4190] Update v6 ARM, fix typo
authorThomas Markwalder <tmark@isc.org>
Thu, 30 Oct 2025 15:13:34 +0000 (11:13 -0400)
committerThomas Markwalder <tmark@isc.org>
Fri, 7 Nov 2025 17:32:36 +0000 (17:32 +0000)
modified:   doc/sphinx/arm/hooks-lease-query.rst
modified:   src/hooks/dhcp/lease_query/lease_query_impl.cc

doc/sphinx/arm/hooks-lease-query.rst
src/hooks/dhcp/lease_query/lease_query_impl.cc

index 87d578914b0a5e6c390a6065234108c055fce726..96e1e746112cd90e8b11ade1a39bc20b5581ad28 100644 (file)
@@ -154,8 +154,8 @@ addresses:
 .. note::
 
     As of Kea 3.1.4, it is also possible to include ranges of requester addresses in CIDR
-    format such as "192.0.1.0/24" or "2001:db8:1::/64". Please note that specifying ranges
-    may be less secure than only using explicit IP addresses.
+    format such as "192.0.1.0/24". Please note that specifying ranges may be less secure
+    than only using explicit IP addresses.
 
 .. _lease-query-dhcpv6:
 
@@ -340,8 +340,9 @@ addresses:
 
 .. note::
 
-    For security purposes, there is no way to specify wildcards. Each requester address
-    must be explicitly listed.
+    As of Kea 3.1.4, it is also possible to include ranges of requester addresses in CIDR
+    format such as "2001:db8:1::/64". Please note that specifying ranges may be less secure
+    than only using explicit IP addresses.
 
 When a query by IP address does not match an existing address lease,
 a search for a matching delegated prefix is conducted. This is carried
index 1fa72b3e17cd1425f70262feb2e26e5507c01ce5..7ceb9b0691bfad6f953055ae54ba8b8edb4e49fd 100644 (file)
@@ -86,7 +86,7 @@ LeaseQueryImpl::LeaseQueryImpl(uint16_t family,
         isc_throw(BadValue, "Lease Query config is empty or not a map");
     }
 
-    parserRequesters(config-get("requesters"));
+    parserRequesters(config->get("requesters"));
 
     ConstElementPtr advanced = config->get("advanced");
     if (advanced) {