Diag-Client-Lib
|
Public Types | |
using | TlsSocket = socket::tls::TlsSocket |
Type alias for tcp secured socket. More... | |
using | TlsContext = socket::tls::TlsContext |
Type alias for tls context. More... | |
Public Member Functions | |
TlsAcceptorImpl (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... | |
std::optional< TlsServer > | GetTlsServer () noexcept |
Get a tls server ready to communicate. More... | |
Private Types | |
using | Acceptor = boost::asio::ip::tcp::acceptor |
Type alias for tcp acceptor. More... | |
Private Attributes | |
boost::asio::io_context | io_context_ |
Store the io context. More... | |
TlsContext | tls_context_ |
Store the tls context. More... | |
std::uint16_t | server_count_ |
Keeps the count of server created. More... | |
std::string | acceptor_name_ |
Store the name of the acceptor. More... | |
Acceptor | acceptor_ |
Store the tcp acceptor. More... | |
Definition at line 44 of file tls_acceptor.cpp.
|
private |
Type alias for tcp acceptor.
Definition at line 117 of file tls_acceptor.cpp.
using boost_support::server::tls::TlsAcceptor< TlsVersion >::TlsAcceptorImpl::TlsContext = socket::tls::TlsContext |
Type alias for tls context.
Definition at line 54 of file tls_acceptor.cpp.
using boost_support::server::tls::TlsAcceptor< TlsVersion >::TlsAcceptorImpl::TlsSocket = socket::tls::TlsSocket |
Type alias for tcp secured socket.
Definition at line 49 of file tls_acceptor.cpp.
|
inlinenoexcept |
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 |
Definition at line 67 of file tls_acceptor.cpp.
|
inlinenoexcept |
Get a tls server ready to communicate.
This blocks until new server is created
Definition at line 86 of file tls_acceptor.cpp.
References boost_support::server::tls::anonymous_namespace{tls_acceptor.cpp}::CreateServerName(), FILE_NAME, and boost_support::common::logger::LibBoostLogger::GetLibBoostLogger().
|
private |
Store the tcp acceptor.
Definition at line 142 of file tls_acceptor.cpp.
|
private |
Store the name of the acceptor.
Definition at line 137 of file tls_acceptor.cpp.
|
private |
Store the io context.
Definition at line 122 of file tls_acceptor.cpp.
|
private |
Keeps the count of server created.
Definition at line 132 of file tls_acceptor.cpp.
|
private |
Store the tls context.
Definition at line 127 of file tls_acceptor.cpp.