From: Marcin Siodelski Date: Mon, 18 Mar 2019 13:55:24 +0000 (+0100) Subject: [#103,!277] Added stub CBControlDHCPv4. X-Git-Tag: Kea-1.6.0-beta~332 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3161f44542b157ad131f3faba062dbee8776501;p=thirdparty%2Fkea.git [#103,!277] Added stub CBControlDHCPv4. --- diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am index 28906ec25e..89a26aad78 100644 --- a/src/lib/dhcpsrv/Makefile.am +++ b/src/lib/dhcpsrv/Makefile.am @@ -66,6 +66,7 @@ libkea_dhcpsrv_la_SOURCES += assignable_network.h 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 @@ -282,6 +283,7 @@ libkea_dhcpsrv_include_HEADERS = \ 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 \ diff --git a/src/lib/dhcpsrv/cb_ctl_dhcp4.cc b/src/lib/dhcpsrv/cb_ctl_dhcp4.cc new file mode 100644 index 0000000000..6c46b60628 --- /dev/null +++ b/src/lib/dhcpsrv/cb_ctl_dhcp4.cc @@ -0,0 +1,20 @@ +// 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 +#include + +using namespace isc::process; + +namespace isc { +namespace dhcp { + +CBControlDHCPv4::CBControlDHCPv4() + : CBControlBase() { +} + +} // end of namespace isc::dhcp +} // end of namespace isc diff --git a/src/lib/dhcpsrv/cb_ctl_dhcp4.h b/src/lib/dhcpsrv/cb_ctl_dhcp4.h new file mode 100644 index 0000000000..d8ff9f2fbf --- /dev/null +++ b/src/lib/dhcpsrv/cb_ctl_dhcp4.h @@ -0,0 +1,26 @@ +// 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 +#include + +namespace isc { +namespace dhcp { + +class CBControlDHCPv4 : public process::CBControlBase { +public: + + CBControlDHCPv4(); +}; + + +} // end of namespace isc::dhcp +} // end of namespace isc + +#endif // CB_CTL_DHCP4_H