Diag-Client-Lib
|
The acceptor to create new tcp servers. More...
#include <tcp_acceptor.h>
Classes | |
class | TcpAcceptorImpl |
Public Member Functions | |
TcpAcceptor (std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept | |
Constructs an instance of Acceptor. More... | |
~TcpAcceptor () noexcept | |
Destruct an instance of TcpAcceptor. More... | |
std::optional< TcpServer > | GetTcpServer () noexcept |
Get a tcp server ready to communicate. More... | |
Private Attributes | |
std::unique_ptr< TcpAcceptorImpl > | tcp_acceptor_impl_ |
Unique pointer to tcp acceptor implementation. More... | |
The acceptor to create new tcp servers.
Definition at line 20 of file tcp_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 129 of file tcp_acceptor.cpp.
|
defaultnoexcept |
Destruct an instance of TcpAcceptor.
|
noexcept |
Get a tcp server ready to communicate.
This blocks until new server is created
Definition at line 136 of file tcp_acceptor.cpp.
References GetTcpServer().
Referenced by GetTcpServer().
|
private |
Unique pointer to tcp acceptor implementation.
Definition at line 56 of file tcp_acceptor.h.