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`,
/// 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.
///
/// 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.
/// @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:
/// 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_;
};