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_
19 template<
typename TlsVersion>
37 template<
typename TlsVersion>
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;
The acceptor to create new tcp servers.
std::unique_ptr< TlsAcceptorImpl > tls_acceptor_impl_
Unique pointer to tls acceptor implementation.
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.