Kea 2.5.8
unix_control_socket.h
Go to the documentation of this file.
1// Copyright (C) 2018-2022 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
9
10#ifndef UNIX_CONTROL_SOCKET_H
11#define UNIX_CONTROL_SOCKET_H
12
14
15namespace isc {
16namespace netconf {
17
24public:
29
31 virtual ~UnixControlSocket() = default;
32
40 data::ConstElementPtr configGet(const std::string& service) override final;
41
51 const std::string& service) override final;
52
62 const std::string& service) override final;
63
64private:
73}; // UnixControlSocket
74
76using UnixControlSocketPtr = std::shared_ptr<UnixControlSocket>;
77
82template <> ControlSocketBasePtr
84
85} // namespace netconf
86} // namespace isc
87
88#endif // UNIX_CONTROL_SOCKET_H
Base class for control socket communication.
Class for control socket communication over UNIX socket.
data::ConstElementPtr configTest(data::ElementPtr config, const std::string &service) override final
Test configuration.
virtual ~UnixControlSocket()=default
Destructor (does nothing).
data::ConstElementPtr configGet(const std::string &service) override final
Get configuration.
data::ConstElementPtr configSet(data::ElementPtr config, const std::string &service) override final
Set configuration.
Contains declarations for control socket communication.
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:29
boost::shared_ptr< Element > ElementPtr
Definition: data.h:28
ControlSocketBasePtr createControlSocket< CfgControlSocket::Type::UNIX >(CfgControlSocketPtr ctrl_sock)
Factory template specialization for unix control sockets.
std::shared_ptr< UnixControlSocket > UnixControlSocketPtr
Type definition for the pointer to the UnixControlSocket.
std::shared_ptr< CfgControlSocket > CfgControlSocketPtr
Defines a pointer for CfgControlSocket instances.
std::shared_ptr< ControlSocketBase > ControlSocketBasePtr
Type definition for the pointer to the ControlSocketBase.
Defines the logger used by the top-level component of kea-lfc.