Kea
2.7.7
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
►
addr_utilities.cc
►
addr_utilities.h
►
asio_wrapper.h
asiolink.h
botan_tls.cc
botan_tls.h
botan_wrapper.h
common_tls.cc
►
common_tls.h
crypto_tls.h
►
dummy_io_cb.h
►
interval_timer.cc
►
interval_timer.h
►
io_acceptor.h
►
io_address.cc
►
io_address.h
►
io_asio_socket.h
►
io_endpoint.cc
►
io_endpoint.h
►
io_error.h
►
io_service.cc
►
io_service.h
io_service_mgr.cc
►
io_service_mgr.h
►
io_service_signal.cc
►
io_service_signal.h
io_service_thread_pool.cc
►
io_service_thread_pool.h
►
io_socket.cc
►
io_socket.h
openssl_tls.cc
openssl_tls.h
►
process_spawn.cc
►
process_spawn.h
►
tcp_acceptor.h
►
tcp_endpoint.h
►
tcp_socket.h
►
tls_acceptor.h
►
tls_socket.h
►
udp_endpoint.h
►
udp_socket.h
►
unix_domain_socket.cc
►
unix_domain_socket.h
►
unix_domain_socket_acceptor.h
►
unix_domain_socket_endpoint.h
►
cc
►
config
►
config_backend
►
cryptolink
►
d2srv
►
database
►
dhcp
►
dhcp_ddns
►
dhcpsrv
►
dns
►
eval
►
exceptions
►
hooks
►
http
►
log
►
mysql
►
pgsql
►
process
►
stats
►
tcp
►
testutils
►
util
►
yang
►
File Members
unix_domain_socket_endpoint.h
Go to the documentation of this file.
1
// Copyright (C) 2017 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 UNIX_DOMAIN_SOCKET_ENDPOINT_H
8
#define UNIX_DOMAIN_SOCKET_ENDPOINT_H
9
10
#ifndef BOOST_ASIO_HPP
11
#error "asio.hpp must be included before including this, see asiolink.h as to why"
12
#endif
13
14
#include <string>
15
16
namespace
isc
{
17
namespace
asiolink
{
18
24
class
UnixDomainSocketEndpoint
{
25
public
:
26
30
explicit
UnixDomainSocketEndpoint
(
const
std::string& endpoint_path)
31
: endpoint_(endpoint_path) {
32
}
30
explicit
UnixDomainSocketEndpoint
(
const
std::string& endpoint_path) {
…
}
33
35
const
boost::asio::local::stream_protocol::endpoint&
36
getASIOEndpoint
()
const
{
37
return
(endpoint_);
38
}
36
getASIOEndpoint
()
const
{
…
}
39
40
private
:
41
43
boost::asio::local::stream_protocol::endpoint endpoint_;
44
45
};
24
class
UnixDomainSocketEndpoint
{
…
};
46
47
}
// end of namespace isc::asiolink
48
}
// end of namespace isc
49
50
#endif
// UNIX_DOMAIN_SOCKET_ENDPOINT_H
isc::asiolink::UnixDomainSocketEndpoint
Endpoint for UnixDomainSocket.
Definition
unix_domain_socket_endpoint.h:24
isc::asiolink::UnixDomainSocketEndpoint::UnixDomainSocketEndpoint
UnixDomainSocketEndpoint(const std::string &endpoint_path)
Constructor.
Definition
unix_domain_socket_endpoint.h:30
isc::asiolink::UnixDomainSocketEndpoint::getASIOEndpoint
const boost::asio::local::stream_protocol::endpoint & getASIOEndpoint() const
Returns underlying ASIO endpoint.
Definition
unix_domain_socket_endpoint.h:36
asiolink
A wrapper interface for the ASIO library.
isc
Defines the logger used by the top-level component of kea-lfc.
Definition
agent_parser.cc:148
src
lib
asiolink
unix_domain_socket_endpoint.h
Generated on Fri Mar 14 2025 19:04:54 for Kea by
1.12.0