]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#62,!144] Added some still missing header files.
authorMarcin Siodelski <marcin@isc.org>
Wed, 28 Nov 2018 14:37:43 +0000 (15:37 +0100)
committerMarcin Siodelski <marcin@isc.org>
Wed, 28 Nov 2018 15:17:21 +0000 (16:17 +0100)
As a result of review.

src/lib/asiodns/Makefile.am
src/lib/database/Makefile.am
src/lib/database/database_log.cc [deleted file]
src/lib/database/database_log.h [deleted file]
src/lib/dhcpsrv/Makefile.am
src/lib/process/Makefile.am

index 89ff0876e685c9b84abe92e5cfc7f3f3f0adf82f..97b9de7c033695646778eed0b9fc46e1e9708b82 100644 (file)
@@ -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
 
index cf48a11f57e7eb66d9e9664fdb8a73a44a50cacb..5390c4b463ab61af5d7432bc5816585a19f8e7d9 100644 (file)
@@ -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 (file)
index 602a223..0000000
+++ /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 <config.h>
-#include <database/database_log.h>
-
-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 (file)
index f42c85c..0000000
+++ /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 <databaae/db_messages.h>
-#include <log/macros.h>
-
-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
index 78c9fc84ffd3dbeb78a2d384c69aa3f5bd9499bf..f96c2fe739a1a6b79a33559187aef5dcdf926ccd 100644 (file)
@@ -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 \
index c5352720d2de54933068f9c30501f54287129ef3..b35e4e7903ba59660cd978690453b305493f068b 100644 (file)
@@ -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