summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp4/dhcp4_messages.cc
diff options
context:
space:
mode:
authorRazvan Becheriu <razvan@isc.org>2023-10-04 13:18:23 +0200
committerRazvan Becheriu <razvan@isc.org>2023-10-06 15:06:34 +0200
commitb30b89c49f901aa6b3dfe83a8400d54d82ecaa10 (patch)
tree36aa596722e3ffcb1d7465e705d8d2e81c79fde7 /src/bin/dhcp4/dhcp4_messages.cc
parent[#2918] added message for requested address on DHCPDISCOVER (diff)
downloadkea-b30b89c49f901aa6b3dfe83a8400d54d82ecaa10.tar.xz
kea-b30b89c49f901aa6b3dfe83a8400d54d82ecaa10.zip
[#2918] added message for requested address on DHCPREQUEST
Diffstat (limited to 'src/bin/dhcp4/dhcp4_messages.cc')
-rw-r--r--src/bin/dhcp4/dhcp4_messages.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/dhcp4/dhcp4_messages.cc b/src/bin/dhcp4/dhcp4_messages.cc
index 8765442cbe..da47f7221a 100644
--- a/src/bin/dhcp4/dhcp4_messages.cc
+++ b/src/bin/dhcp4/dhcp4_messages.cc
@@ -154,6 +154,7 @@ extern const isc::log::MessageID DHCP4_RELEASE_EXPIRED = "DHCP4_RELEASE_EXPIRED"
extern const isc::log::MessageID DHCP4_RELEASE_FAIL = "DHCP4_RELEASE_FAIL";
extern const isc::log::MessageID DHCP4_RELEASE_FAIL_NO_LEASE = "DHCP4_RELEASE_FAIL_NO_LEASE";
extern const isc::log::MessageID DHCP4_RELEASE_FAIL_WRONG_CLIENT = "DHCP4_RELEASE_FAIL_WRONG_CLIENT";
+extern const isc::log::MessageID DHCP4_REQUEST = "DHCP4_REQUEST";
extern const isc::log::MessageID DHCP4_RESERVATIONS_LOOKUP_FIRST_ENABLED = "DHCP4_RESERVATIONS_LOOKUP_FIRST_ENABLED";
extern const isc::log::MessageID DHCP4_RESERVED_HOSTNAME_ASSIGNED = "DHCP4_RESERVED_HOSTNAME_ASSIGNED";
extern const isc::log::MessageID DHCP4_RESPONSE_DATA = "DHCP4_RESPONSE_DATA";
@@ -331,6 +332,7 @@ const char* values[] = {
"DHCP4_RELEASE_FAIL", "%1: failed to remove lease for address %2",
"DHCP4_RELEASE_FAIL_NO_LEASE", "%1: client is trying to release non-existing lease %2",
"DHCP4_RELEASE_FAIL_WRONG_CLIENT", "%1: client is trying to release the lease %2 which belongs to a different client",
+ "DHCP4_REQUEST", "%1: server is processing DHCPREQUEST with hint=%2",
"DHCP4_RESERVATIONS_LOOKUP_FIRST_ENABLED", "Multi-threading is enabled and host reservations lookup is always performed first.",
"DHCP4_RESERVED_HOSTNAME_ASSIGNED", "%1: server assigned reserved hostname %2",
"DHCP4_RESPONSE_DATA", "%1: responding with packet %2 (type %3), packet details: %4",