Diag-Client-Lib
tcp_acceptor.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
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_
10 
12 
13 namespace boost_support {
14 namespace server {
15 namespace tcp {
16 
20 class TcpAcceptor final {
21  public:
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;
34 
38  ~TcpAcceptor() noexcept;
39 
45  std::optional<TcpServer> GetTcpServer() noexcept;
46 
47  private:
51  class TcpAcceptorImpl;
52 
57 };
58 } // namespace tcp
59 } // namespace server
60 } // namespace boost_support
61 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_SERVER_TCP_ACCEPTOR_H_
The acceptor to create new tcp servers.
Definition: tcp_acceptor.h:20
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.
Definition: tcp_acceptor.h:51
Server that manages unsecured/ secured tcp connection.
Definition: tcp_server.h:30