8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TCP_ACCEPTOR_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TCP_ACCEPTOR_H_
32 TcpAcceptor(std::string_view acceptor_name, std::string_view local_ip_address,
33 std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept;
The acceptor to create new tcp servers.
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.
std::optional< TcpServer > GetTcpServer() noexcept
Get a tcp server ready to communicate.
~TcpAcceptor() noexcept
Destruct an instance of TcpAcceptor.
std::unique_ptr< TcpAcceptorImpl > tcp_acceptor_impl_
Unique pointer to tcp acceptor implementation.
Server that manages unsecured/ secured tcp connection.