Kea
2.7.8
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
d
e
f
h
i
k
m
n
o
p
r
s
t
u
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Typedefs
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
v
w
y
Enumerations
a
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
y
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
Functions
a
b
c
d
e
g
h
i
l
m
n
p
q
r
s
u
v
w
y
Variables
b
c
d
e
f
h
l
n
o
p
q
r
s
t
u
y
Typedefs
Enumerations
Enumerator
d
s
Macros
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
y
▼
Kea
►
Kea Developer's Guide
►
Kea Bootp Hooks Library
►
Kea Flexible Option Hooks Library
►
Kea PerfMon Hooks Library
►
libkea-d2srv - Kea D2 Server Library
►
libkea-kea_tcp - TCP Listener Library
Todo List
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
►
bin
►
hooks
▼
lib
►
asiodns
►
asiolink
►
cc
►
config
►
config_backend
►
cryptolink
►
d2srv
►
database
►
dhcp
►
dhcp_ddns
►
dhcpsrv
►
dns
►
eval
►
exceptions
►
hooks
►
http
►
log
►
mysql
►
pgsql
▼
process
▼
cfgrpt
►
cfgrpt.cc
►
config_report.h
►
cb_ctl_base.h
config_base.cc
►
config_base.h
config_ctl_info.cc
►
config_ctl_info.h
config_ctl_parser.cc
►
config_ctl_parser.h
d_cfg_mgr.cc
►
d_cfg_mgr.h
d_controller.cc
►
d_controller.h
►
d_log.cc
d_log.h
►
d_process.h
daemon.cc
►
daemon.h
log_parser.cc
►
log_parser.h
logging_info.cc
►
logging_info.h
►
process_messages.cc
process_messages.h
►
redact_config.cc
►
redact_config.h
►
stats
►
tcp
►
testutils
►
util
►
yang
►
File Members
cfgrpt.cc
Go to the documentation of this file.
1
// Copyright (C) 2015-2023 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
#include <config.h>
8
9
#include <sstream>
10
11
#include <
process/cfgrpt/config_report.h
>
12
13
namespace
isc
{
14
namespace
detail {
15
16
// The config_report array ends with an empty line ("")
17
// Each line before this final one starts with four semicolons (;;;;)
18
// in order to be easy to extract from binaries.
19
std::string
20
getConfigReport
() {
21
std::stringstream tmp;
22
23
size_t
linenum = 0;
24
for
(;;) {
25
const
char
*
const
line =
config_report
[linenum++];
26
if
(line[0] ==
'\0'
)
27
break
;
28
tmp << line + 4 << std::endl;
29
}
30
return
(tmp.str());
31
}
20
getConfigReport
() {
…
}
32
33
}
14
namespace
detail {
…
}
34
}
config_report.h
isc::detail::getConfigReport
std::string getConfigReport()
Definition
cfgrpt.cc:20
isc::detail::config_report
const char *const config_report[]
isc
Defines the logger used by the top-level component of kea-lfc.
Definition
agent_parser.cc:148
src
lib
process
cfgrpt
cfgrpt.cc
Generated on Thu Apr 17 2025 11:33:29 for Kea by
1.12.0