Kea  1.9.9-git
config_report.h
Go to the documentation of this file.
1 // Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef CONFIG_REPORT_H
8 #define CONFIG_REPORT_H
9 
10 #include <string>
11 
12 namespace isc {
13 namespace detail {
14 
15 extern const char* const config_report[];
16 
17 // The config_report array ends with an empty line ("")
18 // Each line before this final one starts with four semicolons (;;;;)
19 // in order to be easy to extract from binaries.
20 std::string getConfigReport();
21 
22 }
23 }
24 
25 #endif // CONFIG_REPORT_H
const char *const config_report[]
Definition: config_report.h:15
Defines the logger used by the top-level component of kea-dhcp-ddns.
std::string getConfigReport()
Definition: cfgrpt.cc:20