summaryrefslogtreecommitdiffstats
path: root/src/bin
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2024-07-23 14:45:15 +0200
committerFrancis Dupont <fdupont@isc.org>2024-08-01 09:23:54 +0200
commit98d096b6db2ca28a977f3c9e7fc6b5b8277b8386 (patch)
tree65bdc1eafb482dbe2db0aef0081b7936bfa1151b /src/bin
parent[#3477] Fixed Botan build (diff)
downloadkea-98d096b6db2ca28a977f3c9e7fc6b5b8277b8386.tar.xz
kea-98d096b6db2ca28a977f3c9e7fc6b5b8277b8386.zip
[#3477] Addressed comments
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/d2/d2_process.cc2
-rw-r--r--src/bin/dhcp4/ctrl_dhcp4_srv.cc2
-rw-r--r--src/bin/dhcp6/ctrl_dhcp6_srv.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/d2/d2_process.cc b/src/bin/d2/d2_process.cc
index 6efe6b4b97..f82b73fff4 100644
--- a/src/bin/d2/d2_process.cc
+++ b/src/bin/d2/d2_process.cc
@@ -81,7 +81,7 @@ D2Process::init() {
HttpCommandMgr::instance().setIOService(getIOService());
// Set the HTTP authentication default realm.
- HttpCommandConfig::DefaultAuthenticationRealm = "kea-dhcp-ddns-server";
+ HttpCommandConfig::DEFAULT_AUTHENTICATION_REALM = "kea-dhcp-ddns-server";
};
void
diff --git a/src/bin/dhcp4/ctrl_dhcp4_srv.cc b/src/bin/dhcp4/ctrl_dhcp4_srv.cc
index c25e55b359..27fad13f6a 100644
--- a/src/bin/dhcp4/ctrl_dhcp4_srv.cc
+++ b/src/bin/dhcp4/ctrl_dhcp4_srv.cc
@@ -1086,7 +1086,7 @@ ControlledDhcpv4Srv::ControlledDhcpv4Srv(uint16_t server_port /*= DHCP4_SERVER_P
HttpCommandMgr::instance().setIOService(getIOService());
// Set the HTTP authentication default realm.
- HttpCommandConfig::DefaultAuthenticationRealm = "kea-dhcpv4-server";
+ HttpCommandConfig::DEFAULT_AUTHENTICATION_REALM = "kea-dhcpv4-server";
// DatabaseConnection uses IO service to run asynchronous timers.
DatabaseConnection::setIOService(getIOService());
diff --git a/src/bin/dhcp6/ctrl_dhcp6_srv.cc b/src/bin/dhcp6/ctrl_dhcp6_srv.cc
index 7cbedfb667..d1e2f5101a 100644
--- a/src/bin/dhcp6/ctrl_dhcp6_srv.cc
+++ b/src/bin/dhcp6/ctrl_dhcp6_srv.cc
@@ -1110,7 +1110,7 @@ ControlledDhcpv6Srv::ControlledDhcpv6Srv(uint16_t server_port /*= DHCP6_SERVER_P
HttpCommandMgr::instance().setIOService(getIOService());
// Set the HTTP authentication default realm.
- HttpCommandConfig::DefaultAuthenticationRealm = "kea-dhcpv6-server";
+ HttpCommandConfig::DEFAULT_AUTHENTICATION_REALM = "kea-dhcpv6-server";
// DatabaseConnection uses IO service to run asynchronous timers.
DatabaseConnection::setIOService(getIOService());