Diag-Client-Lib
tls_acceptor.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TLS_TLS_ACCEPTOR_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TLS_TLS_ACCEPTOR_H_
10 
13 
14 namespace boost_support {
15 namespace server {
16 namespace tls {
17 
18 // Forward declaration
19 template<typename TlsVersion>
20 class TlsAcceptor;
21 
26 
31 
37 template<typename TlsVersion>
38 class TlsAcceptor final {
39  public:
50  TlsAcceptor(std::string_view acceptor_name, std::string_view local_ip_address,
51  std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version,
52  std::string_view certificate_path, std::string_view private_key_path) noexcept;
53 
57  ~TlsAcceptor() noexcept;
58 
64  std::optional<TlsServer> GetTlsServer() noexcept;
65 
66  private:
70  class TlsAcceptorImpl;
71 
76 };
77 } // namespace tls
78 } // namespace server
79 } // namespace boost_support
80 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TLS_TLS_ACCEPTOR_H_
The acceptor to create new tcp servers.
Definition: tls_acceptor.h:38
std::unique_ptr< TlsAcceptorImpl > tls_acceptor_impl_
Unique pointer to tls acceptor implementation.
Definition: tls_acceptor.h:70
std::optional< TlsServer > GetTlsServer() noexcept
Get a tls server ready to communicate.
~TlsAcceptor() noexcept
Destruct an instance of TlsAcceptor.
TlsAcceptor(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version, std::string_view certificate_path, std::string_view private_key_path) noexcept
Constructs an instance of Acceptor.
Server that manages unsecured/ secured tcp connection.
Definition: tls_server.h:30