]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4478] fixed more typos master
authorWlodek Wencel <wlodek@isc.org>
Tue, 28 Apr 2026 10:01:30 +0000 (12:01 +0200)
committerWlodek Wencel <wlodek@isc.org>
Tue, 28 Apr 2026 10:01:30 +0000 (12:01 +0200)
doc/devel/fuzz.dox
src/lib/config/client_connection.h
src/lib/dhcpsrv/cfg_db_access.h
src/lib/dhcpsrv/sflq_allocator.h
src/lib/http/connection.h

index a0a2989692f65dd40a4a7d620c28b2565e1213a5..744bc5c1598d1753ca01b19170adc8526c4e670e 100644 (file)
@@ -154,7 +154,7 @@ Download the minimized testcase from the page, and then, you run:
 python3 infra/helper.py reproduce kea fuzz_dhcp_pkt_process4 ~/Downloads/clusterfuzz-testcase-minimized-fuzz_dhcp_pkt_process4-6414999708041216
 @endcode
 
 python3 infra/helper.py reproduce kea fuzz_dhcp_pkt_process4 ~/Downloads/clusterfuzz-testcase-minimized-fuzz_dhcp_pkt_process4-6414999708041216
 @endcode
 
-If you'd like to reproduce on a specific branch of Kea, you go into the oss-fuz
+If you'd like to reproduce on a specific branch of Kea, you go into the oss-fuzz
 repository and change the last RUN command in `projects/kea/Dockerfile` from
 `RUN git clone https://gitlab.isc.org/isc-projects/kea kea` to
 `RUN git clone https://gitlab.isc.org/isc-projects/kea --branch <branch_name> kea`,
 repository and change the last RUN command in `projects/kea/Dockerfile` from
 `RUN git clone https://gitlab.isc.org/isc-projects/kea kea` to
 `RUN git clone https://gitlab.isc.org/isc-projects/kea --branch <branch_name> kea`,
index b5e1f641525dd2d86bb0cddb30bbc50a11fef328..a25e2c10cad32e97943d43d2076b88110153ce43 100644 (file)
@@ -24,7 +24,7 @@ class ClientConnectionImpl;
 /// In particular, this class is used by the Kea control socket to establish
 /// connections for respective Kea services.
 /// As of Kea 1.2 the servers can handle a single connection at the time.
 /// In particular, this class is used by the Kea control socket to establish
 /// connections for respective Kea services.
 /// As of Kea 1.2 the servers can handle a single connection at the time.
-/// In the future, we're planning to support multiple simulatneous connections.
+/// In the future, we're planning to support multiple simultaneous connections.
 /// In this case, each connection will be handled by a unique instance of the
 /// @ref ClientConnection class.
 ///
 /// In this case, each connection will be handled by a unique instance of the
 /// @ref ClientConnection class.
 ///
index b498357e7dd93b7a01dc2394b3e2ec850adcfb82..85c77c9e55480d9a3d6c2d075e653852916672e5 100644 (file)
@@ -83,7 +83,7 @@ public:
     /// attempt to use this setting for @c HostMgr.
     ///
     /// Note that the @c HostMgr can reject the new setting if any of the
     /// attempt to use this setting for @c HostMgr.
     ///
     /// Note that the @c HostMgr can reject the new setting if any of the
-    /// host backends used does not support specifying multipe hosts with
+    /// host backends used does not support specifying multiple hosts with
     /// the same IP address in a subnet.
     ///
     /// @param unique new setting to be used by @c HostMgr.
     /// the same IP address in a subnet.
     ///
     /// @param unique new setting to be used by @c HostMgr.
index 979f73ab58edbf2772c207ece70e0fa27f3731f0..a948c0b04dbe07a1271bb5dc5e2f9a56196e4207 100644 (file)
@@ -93,10 +93,10 @@ public:
     /// @throw BadValue if the capacity exceeds limit.
     static void sanityChecksSflqAllocator6(Subnet6Ptr subnet);
 
     /// @throw BadValue if the capacity exceeds limit.
     static void sanityChecksSflqAllocator6(Subnet6Ptr subnet);
 
-    /// @brief Maximum capacity of a V4 pool suppported by SFLQ.
+    /// @brief Maximum capacity of a V4 pool supported by SFLQ.
     static constexpr size_t MAX_V4_POOL_SIZE = 16777216;
 
     static constexpr size_t MAX_V4_POOL_SIZE = 16777216;
 
-    /// @brief Maximum capacity of a V6 pool suppported by SFLQ.
+    /// @brief Maximum capacity of a V6 pool supported by SFLQ.
     static constexpr size_t MAX_V6_POOL_SIZE = 16777216;
 
 private:
     static constexpr size_t MAX_V6_POOL_SIZE = 16777216;
 
 private:
index 9f11aac46bf6d58334f4387f8670f0a4f6af2803..fd24a2b793c31ddd6b8723e06f8c0124a3478506 100644 (file)
@@ -464,7 +464,7 @@ protected:
     /// deferred until the connection is no longer used (a reply is sent).
     bool defer_shutdown_;
 
     /// deferred until the connection is no longer used (a reply is sent).
     bool defer_shutdown_;
 
-    /// @brief Flag which indicates if the conenction was already closed
+    /// @brief Flag which indicates if the connection was already closed
     /// to avoid multiple close calls.
     bool closed_;
 };
     /// to avoid multiple close calls.
     bool closed_;
 };