]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2795] update comments
authorPiotrek Zadroga <piotrek@isc.org>
Tue, 20 Jun 2023 09:31:04 +0000 (11:31 +0200)
committerPiotrek Zadroga <piotrek@isc.org>
Mon, 26 Jun 2023 15:30:59 +0000 (15:30 +0000)
src/lib/dhcpsrv/mysql_host_data_source.cc
src/lib/dhcpsrv/pgsql_host_data_source.cc

index 8014c85e306524f53764383a0e390ec650866fc0..95bcbef97f96cac940b4bb0f74dda6f0b6f2ae51 100644 (file)
@@ -2078,7 +2078,7 @@ public:
         GET_HOST_SUBID_ADDR,       // Gets host by IPv4 SubnetID and IPv4 address
         GET_HOST_PREFIX,           // Gets host by IPv6 prefix
         GET_HOST_SUBID6_ADDR,      // Gets host by IPv6 SubnetID and IPv6 prefix
-        GET_HOST_ADDR6,            // Gets host by IPv6 prefix
+        GET_HOST_ADDR6,            // Gets host by IPv6 address
         GET_HOST_SUBID4,           // Gets hosts by IPv4 SubnetID
         GET_HOST_SUBID6,           // Gets hosts by IPv6 SubnetID
         GET_HOST_HOSTNAME,         // Gets hosts by hostname
@@ -2488,7 +2488,7 @@ TaggedStatementArray tagged_statements = { {
             "ORDER BY h.host_id, o.option_id, r.reservation_id"},
 
     // Retrieves host information, IPv6 reservations and DHCPv6 options
-    // associated with a host using IPv6 prefix. This query
+    // associated with a host using IPv6 address. This query
     // may return host information for one or more host reservations. Even
     // if only one host is found, multiple rows
     // are returned due to left joining IPv6 reservations and DHCPv6 options.
index 1f0b32bbe34f7f781eae9bef99a04b4590d86069..106b385259c00311aba65ba63205a90e813260dd 100644 (file)
@@ -1401,7 +1401,7 @@ public:
         GET_HOST_SUBID_ADDR,       // Gets host by IPv4 SubnetID and IPv4 address
         GET_HOST_PREFIX,           // Gets host by IPv6 prefix
         GET_HOST_SUBID6_ADDR,      // Gets host by IPv6 SubnetID and IPv6 prefix
-        GET_HOST_ADDR6,            // Gets host by IPv6 prefix
+        GET_HOST_ADDR6,            // Gets host by IPv6 address
         GET_HOST_SUBID4,           // Gets hosts by IPv4 SubnetID
         GET_HOST_SUBID6,           // Gets hosts by IPv6 SubnetID
         GET_HOST_HOSTNAME,         // Gets hosts by hostname
@@ -1816,7 +1816,7 @@ TaggedStatementArray tagged_statements = { {
 
     // PgSqlHostDataSourceImpl::GET_HOST_ADDR6
     // Retrieves host information, IPv6 reservations and DHCPv6 options
-    // associated with a host using IPv6 prefix. This query
+    // associated with a host using IPv6 address. This query
     // may return host information for one or more host reservations. Even
     // if only one host is found, multiple rows
     // are returned due to left joining IPv6 reservations and DHCPv6 options.