diff options
| author | Francis Dupont <fdupont@isc.org> | 2018-09-14 10:07:33 +0200 |
|---|---|---|
| committer | Francis Dupont <fdupont@isc.org> | 2018-09-14 10:07:33 +0200 |
| commit | ae3d891fdd3f412bb79b7988f6f780919eb743be (patch) | |
| tree | 35ebf509c7a3d4103f602b7ce0d3a456fd95e580 /src | |
| parent | 517982b6dcadec318b47a68e756c2c7c11b4c8a0 (diff) | |
[master] Fixed netconf compilation120-macos_exit_base
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/netconf/main.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/netconf/main.cc b/src/bin/netconf/main.cc index ba03a3e11f..345ef25b53 100644 --- a/src/bin/netconf/main.cc +++ b/src/bin/netconf/main.cc @@ -8,7 +8,7 @@ #include <netconf/netconf_log.h> #include <exceptions/exceptions.h> -#include <dhcpsrv/daemon.h> +#include <process/daemon.h> #include <iostream> #include <fstream> #include <unistd.h> @@ -36,7 +36,7 @@ usage() { exit(EXIT_FAILURE); } -/// @name Temporary code until isc::dhcp::Daemon is used. +/// @name Temporary code until isc::process::Daemon is used. /// /// @{ const char* PID_FILENAME = "kea-netconf.test_config.pid"; @@ -46,7 +46,7 @@ volatile bool SHUTDOWN_FLAG = false; void createPIDFile(int pid) { // This is not a real implemented. We will soon use the one coming - // from isc::dhcp::Daemon AFTER it's moved to libprocess. + // from isc::process::Daemon AFTER it's moved to libprocess. ofstream file(PID_FILENAME, ios::trunc); file << pid; @@ -101,7 +101,7 @@ main(int argc, char* argv[]) { int ret = EXIT_SUCCESS; try { - // Temporary code. This will be replaced with isc::dhcp::Daemon + // Temporary code. This will be replaced with isc::process::Daemon // once it is migrated to libprocess. We DO NOT want to bring // the whole libdhcpsrv into netconf. createPIDFile(getpid()); @@ -111,7 +111,7 @@ main(int argc, char* argv[]) { // Initialize logging. If verbose, we'll use maximum verbosity. bool verbose_mode = true; - isc::dhcp::Daemon::loggerInit(NETCONF_LOGGER_NAME, verbose_mode); + isc::process::Daemon::loggerInit(NETCONF_LOGGER_NAME, verbose_mode); LOG_INFO(netconf_logger, NETCONF_STARTING).arg(VERSION).arg(getpid()); Connection conn("kea-netconf"); |
