Kea 2.2.0
http_control_socket.h
Go to the documentation of this file.
1// Copyright (C) 2018-2021 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 HTTP_CONTROL_SOCKET_H
11#define HTTP_CONTROL_SOCKET_H
12
14
15namespace isc {
16namespace netconf {
17
24public:
25
30
32 virtual ~HttpControlSocket() = default;
33
41 virtual data::ConstElementPtr configGet(const std::string& service);
42
52 const std::string& service);
53
63 const std::string& service);
64
65private:
74};
75
77typedef boost::shared_ptr<HttpControlSocket> HttpControlSocketPtr;
78
83template <> ControlSocketBasePtr
84createControlSocket<CfgControlSocket::Type::HTTP>(CfgControlSocketPtr ctrl_sock);
85
86} // namespace netconf
87} // namespace isc
88
89#endif // HTTP_CONTROL_SOCKET_H
Base class for control socket communication.
Class for control socket communication over HTTP socket.
virtual data::ConstElementPtr configSet(data::ConstElementPtr config, const std::string &service)
Set configuration.
virtual data::ConstElementPtr configGet(const std::string &service)
Get configuration.
virtual data::ConstElementPtr configTest(data::ConstElementPtr config, const std::string &service)
Test configuration.
virtual ~HttpControlSocket()=default
Destructor (does nothing).
HttpControlSocket(CfgControlSocketPtr ctrl_sock)
Constructor.
Contains declarations for control socket communication.
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:27
boost::shared_ptr< ControlSocketBase > ControlSocketBasePtr
Type definition for the pointer to the ControlSocketBase.
boost::shared_ptr< CfgControlSocket > CfgControlSocketPtr
Defines a pointer for CfgControlSocket instances.
boost::shared_ptr< HttpControlSocket > HttpControlSocketPtr
Type definition for the pointer to the HttpControlSocket.
Defines the logger used by the top-level component of kea-lfc.