From: Marcin Siodelski Date: Wed, 28 Nov 2018 14:37:43 +0000 (+0100) Subject: [#62,!144] Added some still missing header files. X-Git-Tag: 284-need-dhcp6-example-for-netconf_base~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dc8d73a58504fd81a49b1c54651388d53d98d53;p=thirdparty%2Fkea.git [#62,!144] Added some still missing header files. As a result of review. --- diff --git a/src/lib/asiodns/Makefile.am b/src/lib/asiodns/Makefile.am index 89ff0876e6..97b9de7c03 100644 --- a/src/lib/asiodns/Makefile.am +++ b/src/lib/asiodns/Makefile.am @@ -44,6 +44,7 @@ libkea_asiodns_la_LIBADD += $(LOG4CPLUS_LIBS) # Specify the headers for copying into the installation directory tree. libkea_asiodns_includedir = $(pkgincludedir)/asiodns libkea_asiodns_include_HEADERS = \ + asiodns_messages.h \ io_fetch.h \ logger.h diff --git a/src/lib/database/Makefile.am b/src/lib/database/Makefile.am index cf48a11f57..5390c4b463 100644 --- a/src/lib/database/Makefile.am +++ b/src/lib/database/Makefile.am @@ -50,4 +50,5 @@ libkea_database_include_HEADERS = \ dbaccess_parser.h \ db_exceptions.h \ db_log.h \ - db_messages.h + db_messages.h \ + server_selector.h diff --git a/src/lib/database/database_log.cc b/src/lib/database/database_log.cc deleted file mode 100644 index 602a223621..0000000000 --- a/src/lib/database/database_log.cc +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (C) 2018 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 - -namespace isc { -namespace db { - -isc::log::Logger database_logger("database"); - -} // end of namespace db -} // end of namespace isc diff --git a/src/lib/database/database_log.h b/src/lib/database/database_log.h deleted file mode 100644 index f42c85ca89..0000000000 --- a/src/lib/database/database_log.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (C) 2018 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 DATABASE_LOG_H -#define DATABASE_LOG_H - -#include -#include - -namespace isc { -namespace db { - -/// @brief Common database library logger. -extern isc::log::Logger database_logger; - -} // end of namespace isc::db -} // end of namespace isc - -#endif // DATABASE_LOG_H diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am index 78c9fc84ff..f96c2fe739 100644 --- a/src/lib/dhcpsrv/Makefile.am +++ b/src/lib/dhcpsrv/Makefile.am @@ -261,6 +261,7 @@ libkea_dhcpsrv_include_HEADERS = \ cache_host_data_source.h \ callout_handle_store.h \ cfg_4o6.h \ + cfg_consistency.h \ cfg_db_access.h \ cfg_duid.h \ cfg_expiration.h \ @@ -287,6 +288,7 @@ libkea_dhcpsrv_include_HEADERS = \ d2_client_mgr.h \ db_type.h \ dhcp4o6_ipc.h \ + dhcpsrv_log.h \ dhcpsrv_messages.h \ host.h \ host_container.h \ @@ -306,6 +308,7 @@ libkea_dhcpsrv_include_HEADERS = \ network.h \ network_state.h \ pool.h \ + sanity_checker.h \ shared_network.h \ srv_config.h \ subnet.h \ @@ -346,6 +349,7 @@ libkea_dhcpsrv_parsers_include_HEADERS = \ parsers/ifaces_config_parser.h \ parsers/option_data_parser.h \ parsers/dhcp_queue_control_parser.h \ + parsers/sanity_checks_parser.h \ parsers/shared_network_parser.h \ parsers/shared_networks_list_parser.h \ parsers/simple_parser4.h \ diff --git a/src/lib/process/Makefile.am b/src/lib/process/Makefile.am index c5352720d2..b35e4e7903 100644 --- a/src/lib/process/Makefile.am +++ b/src/lib/process/Makefile.am @@ -62,11 +62,15 @@ libkea_process_la_LIBADD += $(LOG4CPLUS_LIBS) $(BOOST_LIBS) # Specify the headers for copying into the installation directory tree. libkea_process_includedir = $(pkgincludedir)/process libkea_process_include_HEADERS = \ + config_base.h \ config_ctl_info.h \ config_ctl_parser.h \ + daemon.h \ d_cfg_mgr.h \ d_controller.h \ d_log.h \ d_process.h \ io_service_signal.h \ + logging_info.h \ + log_parser.h \ process_messages.h