]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4527] fixed perfdhcp
authorRazvan Becheriu <razvan@isc.org>
Thu, 4 Jun 2026 11:15:39 +0000 (14:15 +0300)
committerRazvan Becheriu <razvan@isc.org>
Thu, 4 Jun 2026 11:24:00 +0000 (14:24 +0300)
ChangeLog
src/bin/perfdhcp/main.cc

index a7445433c135479d72ed18cc59689ada958f0b33..e28af185237165cceae774d610e8e876137c680f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2480.  [bug]           razvan
+       Fixed ARM documentation examples related to "hostname-char-set"
+       and "hostname-char-replacement".
+       (Gitlab #4486)
+
+2479.  [bug]           razvan
+       Fixed a crash on server exit when database and interface
+       reconnect mechanism is enabled and neither the database of
+       interface can be recovered. Also added DHCP_IFACE_OPEN_SOCKET
+       debug message which logs the interface name, address and port
+       opened.
+       (Gitlab #4527)
+
 2478.  [bug]           razvan
        Fixed an issue that caused kea-dhcp6 to incorrectly emit a
        DDNS_TUNINT6_PROCESS_ERROR when subnet selection has failed.
index 9f478e2fd0eeb1736b4390a3dc87f1c476a36b28..d804d8d6a314205aaa8cda5ebcf86dd65799ceca 100644 (file)
@@ -6,12 +6,12 @@
 
 #include <config.h>
 
-#include <util/filesystem.h>
+#include <exceptions/exceptions.h>
+#include <log/logger_support.h>
 #include <perfdhcp/avalanche_scen.h>
 #include <perfdhcp/basic_scen.h>
 #include <perfdhcp/command_options.h>
-
-#include <exceptions/exceptions.h>
+#include <util/filesystem.h>
 
 #include <iostream>
 #include <stdint.h>
@@ -38,6 +38,7 @@ main(int argc, char* argv[]) {
         if (command_options.parse(argc, argv, true)) {
             return (ret_code);
         }
+        isc::log::initLogger("perfdhcp");
         parser_error = false;
         auto scenario = command_options.getScenario();
         PerfSocket socket(command_options);