From: Wlodek Wencel Date: Tue, 28 Apr 2026 10:01:30 +0000 (+0200) Subject: [#4478] fixed more typos X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;p=thirdparty%2Fkea.git [#4478] fixed more typos --- diff --git a/doc/devel/fuzz.dox b/doc/devel/fuzz.dox index a0a2989692..744bc5c159 100644 --- a/doc/devel/fuzz.dox +++ b/doc/devel/fuzz.dox @@ -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 -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 kea`, diff --git a/src/lib/config/client_connection.h b/src/lib/config/client_connection.h index b5e1f64152..a25e2c10ca 100644 --- a/src/lib/config/client_connection.h +++ b/src/lib/config/client_connection.h @@ -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 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. /// diff --git a/src/lib/dhcpsrv/cfg_db_access.h b/src/lib/dhcpsrv/cfg_db_access.h index b498357e7d..85c77c9e55 100644 --- a/src/lib/dhcpsrv/cfg_db_access.h +++ b/src/lib/dhcpsrv/cfg_db_access.h @@ -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 - /// 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. diff --git a/src/lib/dhcpsrv/sflq_allocator.h b/src/lib/dhcpsrv/sflq_allocator.h index 979f73ab58..a948c0b04d 100644 --- a/src/lib/dhcpsrv/sflq_allocator.h +++ b/src/lib/dhcpsrv/sflq_allocator.h @@ -93,10 +93,10 @@ public: /// @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; - /// @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: diff --git a/src/lib/http/connection.h b/src/lib/http/connection.h index 9f11aac46b..fd24a2b793 100644 --- a/src/lib/http/connection.h +++ b/src/lib/http/connection.h @@ -464,7 +464,7 @@ protected: /// 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_; };