]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4272] Spellchecks
authorAndrei Pavel <andrei@isc.org>
Mon, 6 Apr 2026 16:37:30 +0000 (19:37 +0300)
committerAndrei Pavel <andrei@isc.org>
Thu, 6 Aug 2026 07:34:25 +0000 (10:34 +0300)
38 files changed:
src/fuzz/fuzz_agent.cc
src/fuzz/fuzz_cc.cc
src/fuzz/fuzz_crypto.cc
src/fuzz/fuzz_d2.cc
src/fuzz/fuzz_dhcp_parser4.cc
src/fuzz/fuzz_dhcp_parser6.cc
src/fuzz/fuzz_dhcp_pkt4.cc
src/fuzz/fuzz_dhcp_pkt6.cc
src/fuzz/fuzz_dhcp_pkt_process4.cc
src/fuzz/fuzz_dhcp_pkt_process6.cc
src/fuzz/fuzz_dhcpsrv.cc
src/fuzz/fuzz_dhcpsrv_csv_lease.cc
src/fuzz/fuzz_eval4.cc
src/fuzz/fuzz_eval6.cc
src/fuzz/fuzz_hook_ddns_tuning4.cc
src/fuzz/fuzz_hook_ddns_tuning6.cc
src/fuzz/fuzz_hook_flex_id4.cc
src/fuzz/fuzz_hook_flex_id6.cc
src/fuzz/fuzz_hook_lease_query4.cc
src/fuzz/fuzz_hook_lease_query6.cc
src/fuzz/fuzz_hook_radius4.cc
src/fuzz/fuzz_hook_radius6.cc
src/fuzz/fuzz_hook_run_script4.cc
src/fuzz/fuzz_hook_run_script6.cc
src/fuzz/fuzz_hook_tsig.cc
src/fuzz/fuzz_hook_user_chk4.cc
src/fuzz/fuzz_hook_user_chk6.cc
src/fuzz/fuzz_http.cc
src/fuzz/fuzz_ioaddress.cc
src/fuzz/fuzz_mysql4.cc
src/fuzz/fuzz_mysql6.cc
src/fuzz/fuzz_pgsql4.cc
src/fuzz/fuzz_pgsql6.cc
src/fuzz/fuzz_util.cc
src/fuzz/helper_func.cc
src/fuzz/helper_func.h
src/fuzz/mysqlmock.cc
src/fuzz/pgmock.cc

index f46c76786cb276a0c50e0208e5cdc1688156db96..0392c2e5e430a1deb2e5842cf389fdca47fe5980 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -44,7 +44,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
     try {
         ctx.parseString(payload, type);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Parse payload to JSON
@@ -61,7 +61,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         simpleParser.checkTlsSetup(elem);
         simpleParser.parse(ctxPtr, elem, checkOnly);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 61e6054e9dbb1e22d6392814258c044317d4da14..db4252cf3dd86722da3a6235daab22e93ab93aad 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -55,7 +55,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         feed.toElement();
         feed.getErrorMessage();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Try parse payload to Element pointer
@@ -72,28 +72,28 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         parser.parseIntTriplet(elem, val1);
         parser.parseIntTriplet(elem, val2);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target checkRequired
     try {
         SimpleParser::checkRequired(required, elem);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target checkKeywords
     try {
         SimpleParser::checkKeywords(keywords, elem);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target deriveParams
     try {
         SimpleParser::deriveParams(elem, Element::createMap(), params);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index b9dc7362556bbad2eba17ed27393e05b0741b2dd..8359e0f244e7594c71b2c59ead2483238faf5d17 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -42,7 +42,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         ctx.verify(&record, tsig_data.data(), tsig_data.size());
     } catch (const isc::Exception&) {
-        // Slient ezceptions
+        // Silent exceptions
     }
 
     // HMAC
@@ -58,7 +58,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             static_cast<HashAlgorithm>(fdp.ConsumeIntegralInRange<int>(0, 6)),
             sig.data(), sig.size());
     } catch (const isc::Exception&) {
-        // Slient ezceptions
+        // Silent exceptions
     }
 
     return 0;
index d9944d86c99ff843209227cb48af9ae962fc529d..b3e2bfae62a93f4b9e45180620a6f1a3814a515b 100644 (file)
@@ -1,10 +1,10 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
 ////////////////////////////////////////////////////////////////////////////////
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -69,7 +69,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
     try {
         ctx.parseString(payload, type);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Parse payload to JSON
@@ -85,7 +85,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         D2SimpleParser::setAllDefaults(elem);
         simpleParser.parse(ctxPtr, elem, checkOnly);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare buffer
@@ -95,7 +95,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
     try {
         NameChangeRequest::fromFormat(NameChangeFormat::FMT_JSON, buf);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target Message fromWire
@@ -103,7 +103,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         Message msg(Message::PARSE);
         msg.fromWire(buf);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target D2UpdateMessage fromWire (Inbound)
@@ -113,7 +113,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         D2UpdateMessage message(D2UpdateMessage::INBOUND);
         message.fromWire(payload.data(), payload.size(), &tsigctx) ;
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target D2UpdateMessage fromWire (Outbound)
@@ -123,7 +123,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         D2UpdateMessage message(D2UpdateMessage::OUTBOUND);
         message.fromWire(payload.data(), payload.size(), &tsigctx);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 35571254918355dfff7897f6e64a8a6b82fb6c32..9120918a808076223c2c8e8dce4a765537519ecb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index d75d4c77ba6677b1360651ad5ab66abd43e7b4c2..f5b0092064b422a90892e131302ab6efd5ddc508 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index 1a021cf10af54210d37da15bc65d34509b287a3e..e48c4ddbf99cb170c360ec42ae6695800d2c4be9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -162,7 +162,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         }
 */
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
   //  srv.reset();
index d30e506f78bfcd012353a1a31a1feb2172976ea1..03dff438df973d458cfe50a3c22422be070bac39 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -119,7 +119,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             srv->processDhcp6Query(pkt);
         }
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     srv.reset();
index d23fb669c2064b683ad51ec53248c3fb49ced5cb..576997370c41fa1e89bee23237e09bb19ec4d630 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -143,27 +143,27 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call accept for packet checking
     try {
         srv->fuzz_accept(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call sanityCheck for packet checking
     try {
         MyDhcpv4Srv::fuzz_sanityCheck(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -173,9 +173,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call select subnet
@@ -188,18 +188,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             ctx->subnet_ = srv->fuzz_selectSubnet(pkt, drop, false);
         }
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call processLocalizedQuery4
     try {
         srv->processLocalizedQuery4(ctx, false);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare callout handle
@@ -228,9 +228,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease4_offer(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -252,9 +252,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         leases4_committed(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index cbe78139a2bc9a9b8e237b22d47e9eed65a68488..9f77c4a2816703ace2b7a250db21f6ee4e64fd89 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -127,27 +127,27 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call sanityCheck for packet checking
     try {
         srv->fuzz_sanityCheck(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call process functions after the accept and check
     try {
         srv->processDhcp6Query(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -157,9 +157,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call select subnet
@@ -167,18 +167,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         bool drop = false;
         ctx.subnet_ = srv->fuzz_selectSubnet(pkt, drop);
     } catch (const isc::Exception& e) {
-       // Slient exceptions
+       // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call processLocalizedQuery6
     try {
         srv->processLocalizedQuery6(ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare callout handle
@@ -199,9 +199,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         leases6_committed(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index 285dce201ac8978f137c0ddc0160c3a7c6b972b9..ffe858ac4d258a1df85967147c62be4cbf217b75 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -145,7 +145,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         ccdp.parse(dict, payload_elem, AF_INET);
         ccdp.parse(dict, payload_elem, AF_INET6);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
 
@@ -156,7 +156,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         scf.parse(payload_elem, fdp.ConsumeBool());
     }
     catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
 
@@ -167,7 +167,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         ControlSocketsParser csp;
         csp.parse(srv, elem);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -176,7 +176,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         Subnet6ConfigParser scf(fdp.ConsumeBool());
         scf.parse(elem, fdp.ConsumeBool());
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -185,7 +185,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         D2ClientConfigParser d2p;
         d2p.parse(elem);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Host Reservation parsing
@@ -195,7 +195,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         HostReservationParser4 hrp;
         hrp.parse(SubnetID(10), elem, fdp.ConsumeBool());
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -204,7 +204,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         HostReservationParser6 hrp;
         hrp.parse(SubnetID(10), elem, fdp.ConsumeBool());
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 9f131b4a9f841ec00604c3a55b2aaec52b0f2331..e33695b8ce00990f982ab377cf0d6aa2b9ad6c4e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index 6f33f484481e8d7ced2b339373bc13e7a7e9174f..89f1216a189a9bade8674ceeafbf89cfece4bf00 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -70,7 +70,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
     try {
         ctx.convertNestLevelNumber(payload, loc);
     } catch(const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index f06138b2e90f3ad38f1056777903734ad23304b1..13aa3cadcf71130eb7d9d09dd9dd41200aca6303 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -70,7 +70,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
     try {
         ctx.convertNestLevelNumber(payload, loc);
     } catch(const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 9cad2b002dc2acaf29a90ef8c462bec1c1b3d8f9..7074832dd3d3550ecf08738d60c8f5d95ec60a54 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -133,9 +133,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -146,9 +146,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call select subnet
@@ -161,9 +161,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             ctx->subnet_ = srv->fuzz_selectSubnet(pkt, drop, false);
         }
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz ddns4_update
@@ -184,9 +184,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         }
         ddns4_update(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index f9ff810f65135c33f5731210afac2f638d310258..77cb19e2e10ede8a30b1c6566acd8e3135ec46cc 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -122,9 +122,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -135,9 +135,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call select subnet
@@ -145,9 +145,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         bool drop = false;
         ctx.subnet_ = srv->fuzz_selectSubnet(pkt, drop);
     } catch (const isc::Exception& e) {
-       // Slient exceptions
+       // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz ddns6_update
@@ -163,9 +163,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("subnet6", ctx.subnet_);
         ddns6_update(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index 4de4f2bc51d45b9fb52874a502caeff7e8323ef8..0a24f09490573ce69607938eb5abe2c09fd6acf5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -90,9 +90,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query4", pkt);
         pkt4_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index a2e6acab54f269236488785d9bca0cd0952ba50f..c3cad738e7b0470d65c72f3a926e8d1e0d7c1904 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -81,9 +81,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query6", pkt);
         pkt6_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index 2204a19cb41652218b92339fccf66e82dd25bb90..852d259706d661b95928c6daadb1c5df5281c5e5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -91,9 +91,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query4", pkt);
         buffer4_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index e507b2701ea6ecd7227bdbf1dad72b7d4341e941..1f3c2756d3dfbad343dc3fb327c3d47e71a3d9b5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -82,9 +82,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query6", pkt);
         buffer6_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index cd16813352642d97cb5cb8040432486e6018d685..18a980f11a5a7981f3f371874ec3297d7b166d10 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -131,9 +131,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -144,9 +144,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz subnet4_select
@@ -166,9 +166,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         }
         subnet4_select(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
@@ -190,9 +190,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease4_release(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -213,9 +213,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease4_decline(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index c7af4504316c2f92973179fd5fdf37a724b859f8..96edd6aba03cb9a8e8de0c863e35a1882fbaa2f6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -122,9 +122,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -135,9 +135,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz subnet6_select
@@ -151,9 +151,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
                             cfgmgr.getCurrentCfg()->getCfgSubnets6()->getAll());
         subnet6_select(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
@@ -174,9 +174,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease6_decline(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -197,9 +197,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease6_release(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index daa4082ef4813dfab7cb5cc3cc0d1e683c95e6ec..19240092944d16d7c740f2ca1fbda80752ce394c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -131,9 +131,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -144,9 +144,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call lease4_release
@@ -163,9 +163,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease4_release(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -187,9 +187,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease4_decline(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -213,9 +213,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         leases4_committed(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index e3af6174f0d8730b7d19bafb4b283afc9703f49c..0f270e407f7c8fa28148ad9580ee423ae31d0b0e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -123,9 +123,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -136,9 +136,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Call lease6_decline
@@ -155,9 +155,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease6_decline(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -179,9 +179,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         lease6_release(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -204,9 +204,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         leases6_committed(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
@@ -235,9 +235,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 
         addr6_register(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean up to avoid mem leak
index 069fbe34d3f551a744ab6d75b9464a256c2c5b9a..75b77665be209659b8f8dabd65b9bfa57204e4b9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -50,7 +50,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
 
         ctx.verify(&record, wire.data(), wire.size());
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target key exchange
@@ -58,7 +58,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         auto val = fdp.ConsumeIntegralInRange<int>(-5, 10);
         TKeyExchange::statusToText(static_cast<TKeyExchange::Status>(val));
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 60a832de5f9184a29a3a387a30cc0edd611d49f2..f2d89981aadd7fb3871f44d8b9d84bf7adfe468f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -118,7 +118,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             }
         }
     } catch (...) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     Pkt4Ptr pkt;
@@ -172,9 +172,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query4", pkt);
         pkt4_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
@@ -186,9 +186,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -198,9 +198,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz subnet4_select
@@ -220,9 +220,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         }
         subnet4_select(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index 8a3bfdd421feaf1f6e9c928a7eb705537da77b7d..99da476cde3257d8d3513de0bea7301dedfde5a7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -123,7 +123,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
             }
         }
     } catch (...) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     Pkt6Ptr pkt;
@@ -167,9 +167,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         handle->setArgument("query6", pkt);
         pkt6_receive(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
@@ -181,9 +181,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->fuzz_classifyPacket(pkt);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare client context
@@ -193,9 +193,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     try {
         srv->earlyGHRLookup(pkt, ctx);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Fuzz subnet6_select
@@ -210,9 +210,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
                             cfgmgr.getCurrentCfg()->getCfgSubnets6()->getAll());
         subnet6_select(*handle);
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Clean handle to avoid mem leak
index 43922daa8863d6faafba9af71736fdc46a547858..70029000b332878788511aeabef4e1d39623bd7c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -112,9 +112,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         request.finalize();
         request.reset();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -139,9 +139,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         response.finalize();
         response.reset();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -151,9 +151,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         json.finalize();
         json.reset();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -164,9 +164,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         copyHttpHeaders(headers, response);
         CfgHttpHeaderstoElement(headers);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try{
@@ -175,9 +175,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         cfg.parse(Element::fromJSON(payload));
         cfg.toElement();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try{
@@ -185,9 +185,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         Url url(payload);
         url.isValid();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try{
@@ -196,9 +196,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         HttpDateTime::fromRfc1123(payload);
         HttpDateTime::fromRfc850(payload);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     try {
@@ -207,9 +207,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
         request.reset();
         response.reset();
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 1a1a11eb5cbc3ba00b424c84cd85484715beae50..459eb7bb9ec1a6b98cc82f05e1e7bdfade0d35ee 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index 94cb6ef4c0479f82bacb6939afb67756b45c32ce..e4adac9eea19dada0651bdd81f4503a9e8cf57f1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -95,14 +95,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         try {
             dhcp_backend.getGlobalParameter4(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target getAllSubnets4
         try {
             dhcp_backend.getAllSubnets4(selector);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target createUpdateSubnet4
@@ -130,14 +130,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
                                               t1, t2, t3, sid));
             dhcp_backend.createUpdateSubnet4(selector, subnet);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target deleteSubnet4
         try {
             dhcp_backend.deleteSubnet4(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target createUpdateOption4
@@ -154,7 +154,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
 
             dhcp_backend.createUpdateOption4(selector, opt_name, opt_desc);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
     } catch (const isc::Exception&) {
         // Silent top-level exceptions
index 074585d3c6570f6f29719615ee7d32941abb7974..5332bede46fb42253f5a082cfdf1490179b6f05e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -95,14 +95,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         try {
             dhcp_backend.getGlobalParameter6(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target getAllSubnets6
         try {
             dhcp_backend.getAllSubnets6(selector);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target createUpdateSubnet6
@@ -135,14 +135,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
                                               t1, t2, t3, t4, sid));
             dhcp_backend.createUpdateSubnet6(selector, subnet);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target deleteSubnet6
         try {
             dhcp_backend.deleteSubnet6(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target createUpdateOption6
@@ -159,7 +159,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
 
             dhcp_backend.createUpdateOption6(selector, opt_name, opt_desc);
         } catch (const isc::Exception& e) {
-            // Slient exceptions
+            // Silent exceptions
         }
     } catch (const isc::Exception&) {
         // Silent top-level exceptions
index 490374606a3d8f45659f59ab6b129cc81429d562..d5c2164c2de1dc982573b7229e87f550b4e56843 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -95,7 +95,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
                 break;
         }
     } catch (const isc::Exception&) {
-        // Slient exceptions use default unassigned server selector
+        // Silent exceptions use default unassigned server selector
     }
 
     try {
@@ -107,35 +107,35 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         try {
             backend.selectQuery(0, binds, PgSqlConnection::ConsumeResultRowFun([](PgSqlResult&, int) {}));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target insertQuery
         try {
             backend.insertQuery(0, binds);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target updateDeleteQuery
         try {
             backend.updateDeleteQuery(0, binds);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level getGlobalParameter4
         try {
             dhcp_backend.getGlobalParameter4(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level getAllSubnets4
         try {
             dhcp_backend.getAllSubnets4(selector);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level createUpdateSubnet4
@@ -161,14 +161,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
             Subnet4Ptr subnet(Subnet4::create(address, fdp.ConsumeIntegralInRange(0, 32), t1, t2, t3, sid));
             dhcp_backend.createUpdateSubnet4(selector, subnet);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level deleteSubnet4
         try {
             dhcp_backend.deleteSubnet4(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level createUpdateOption4
@@ -185,10 +185,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
 
             dhcp_backend.createUpdateOption4(selector, opt_name, opt_desc);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
     } catch (const isc::Exception& e) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 633250f76f3a621f252dfea57d5420e9dde5b828..f0e33bd8d5406dcfcd790f0c2b53f694667e4af1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -94,7 +94,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
                 break;
         }
     } catch (const isc::Exception&) {
-        // Slient exceptions use default unassigned server selector
+        // Silent exceptions use default unassigned server selector
     }
 
     try {
@@ -106,35 +106,35 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         try {
             backend.selectQuery(0, binds, PgSqlConnection::ConsumeResultRowFun([](PgSqlResult&, int) {}));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target insertQuery
         try {
             backend.insertQuery(0, binds);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target updateDeleteQuery
         try {
             backend.updateDeleteQuery(0, binds);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level getGlobalParameter6
         try {
             dhcp_backend.getGlobalParameter6(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level getAllSubnets6
         try {
             dhcp_backend.getAllSubnets6(selector);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level createUpdateSubnet6
@@ -165,14 +165,14 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
             Subnet6Ptr subnet(Subnet6::create(address, fdp.ConsumeIntegralInRange(0, 128), t1, t2, t3, t4, sid));
             dhcp_backend.createUpdateSubnet6(selector, subnet);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level deleteSubnet6
         try {
             dhcp_backend.deleteSubnet6(selector, fdp.ConsumeRandomLengthString(32));
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
 
         // Target upper level createUpdateOption6
@@ -189,10 +189,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
 
             dhcp_backend.createUpdateOption6(selector, opt_name, opt_desc);
         } catch (const isc::Exception&) {
-            // Slient exceptions
+            // Silent exceptions
         }
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 283ab56adb81a5ebe6dbed44828075a1ce2b5b58..077db5a3eb45b9720ed6cd44bce4cda87aeee273 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -35,54 +35,54 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
     try {
         str::tokens(payload, delim, isEscape);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str quotedStringToBinary
     try {
         str::quotedStringToBinary(payload);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str decodeFormattedHexString
     try {
         str::decodeFormattedHexString(payload, out);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str decodeColonSeparatedHexString
     try {
         str::decodeColonSeparatedHexString(payload, out);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str decodeSeparatedHexString
     try {
         str::decodeSeparatedHexString(payload, delim, out);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str trim
     try {
         str::trim(payload);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target str lowercase/uppercase
@@ -91,9 +91,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         str::lowercase(temp);
         str::uppercase(temp);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target CSVRow
@@ -104,18 +104,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
             row.readAtEscaped(i);
         }
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target encodeUtf8
     try {
         encode::encodeUtf8(payload);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Prepare posix_time object
@@ -136,9 +136,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
     try {
         ptimeToText(pt);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     // Target durationToText
@@ -146,9 +146,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
         time_duration td = pt.time_of_day();
         isc::util::durationToText(td);
     } catch (const isc::Exception&) {
-        // Slient exceptions
+        // Silent exceptions
     } catch (const boost::exception&) {
-        // Slient exceptions
+        // Silent exceptions
     }
 
     return 0;
index 2472f3f7aa4c7a20f7bb4940990ab5be43ece98b..86e6e7fca3c6798536a78fd08e043309536a46dd 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -58,7 +58,7 @@ namespace fuzz {
             try {
                 fs::remove(file_path);
             } catch (...) {
-                // Slient exceptions
+                // Silent exceptions
             }
         }
     }
index e20ae6c2a462c5cb7a6b6edd51dd7dd5aa3d2e5e..831a04dd8c827a4c2e809fe3cd986cb9807fd808 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index b0d2b93782e452200de352aed4cc925c3d4b65ab..f5b4bd5870b70097c602f23f2dcbd650b99dd268 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
index d885e5a8ed67240884929eacb96ede7ed03f3cac..ac6a16a2f2e6ccba71cc89558f92bb5b54029cc5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2025 Ada Logcis Ltd.
+// Copyright (C) 2025 Ada Logics Ltd.
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -38,7 +38,7 @@ extern "C" void pgmock_load_bytes(const uint8_t* data, size_t size) {
     g_fdp = new FuzzedDataProvider(data, size);
 }
 
-// Helper to duplcate string and drop const for return
+// Helper to duplicate string and drop const for return
 static char* dupstr(const char* s) {
     if (!s) {
         return nullptr;