libkea_dhcpsrv_la_SOURCES += base_host_data_source.h
libkea_dhcpsrv_la_SOURCES += cache_host_data_source.h
libkea_dhcpsrv_la_SOURCES += callout_handle_store.h
+libkea_dhcpsrv_la_SOURCES += cb_ctl_dhcp4.cc cb_ctl_dhcp4.h
libkea_dhcpsrv_la_SOURCES += cfg_4o6.cc cfg_4o6.h
libkea_dhcpsrv_la_SOURCES += cfg_consistency.cc cfg_consistency.h
libkea_dhcpsrv_la_SOURCES += cfg_db_access.cc cfg_db_access.h
base_host_data_source.h \
cache_host_data_source.h \
callout_handle_store.h \
+ cb_ctl_dhcp4.h \
cfg_4o6.h \
cfg_consistency.h \
cfg_db_access.h \
--- /dev/null
+// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC")
+//
+// 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/.
+
+#include <config.h>
+#include <dhcpsrv/cb_ctl_dhcp4.h>
+
+using namespace isc::process;
+
+namespace isc {
+namespace dhcp {
+
+CBControlDHCPv4::CBControlDHCPv4()
+ : CBControlBase<ConfigBackendDHCPv4Mgr>() {
+}
+
+} // end of namespace isc::dhcp
+} // end of namespace isc
--- /dev/null
+// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC")
+//
+// 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/.
+
+#ifndef CB_CTL_DHCP4_H
+#define CB_CTL_DHCP4_H
+
+#include <process/cb_ctl_base.h>
+#include <dhcpsrv/config_backend_dhcp4_mgr.h>
+
+namespace isc {
+namespace dhcp {
+
+class CBControlDHCPv4 : public process::CBControlBase<ConfigBackendDHCPv4Mgr> {
+public:
+
+ CBControlDHCPv4();
+};
+
+
+} // end of namespace isc::dhcp
+} // end of namespace isc
+
+#endif // CB_CTL_DHCP4_H