Diag-Client-Lib
|
The acceptor to create new tcp servers. More...
#include <tls_acceptor.h>
Classes | |
class | TlsAcceptorImpl |
Public Member Functions | |
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. More... | |
~TlsAcceptor () noexcept | |
Destruct an instance of TlsAcceptor. More... | |
std::optional< TlsServer > | GetTlsServer () noexcept |
Get a tls server ready to communicate. More... | |
Private Attributes | |
std::unique_ptr< TlsAcceptorImpl > | tls_acceptor_impl_ |
Unique pointer to tls acceptor implementation. More... | |
The acceptor to create new tcp servers.
TlsVersion | The tls version to be used by client for communication |
Definition at line 38 of file tls_acceptor.h.
|
noexcept |
Constructs an instance of Acceptor.
Tcp connection shall be accepted on this ip address and port
[in] | local_ip_address | The local ip address |
[in] | local_port_num | The local port number |
[in] | maximum_connection | The maximum number of accepted connection allowed |
Definition at line 146 of file tls_acceptor.cpp.
|
defaultnoexcept |
Destruct an instance of TlsAcceptor.
|
noexcept |
Get a tls server ready to communicate.
This blocks until new server is created
Definition at line 159 of file tls_acceptor.cpp.
References boost_support::server::tls::TlsAcceptor< TlsVersion >::GetTlsServer().
Referenced by boost_support::server::tls::TlsAcceptor< TlsVersion >::GetTlsServer().
|
private |
Unique pointer to tls acceptor implementation.
Definition at line 75 of file tls_acceptor.h.