8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CLIENT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CLIENT_H_
12 #include <string_view>
23 template<
typename TlsVersion>
41 template<
typename TlsVersion>
74 TlsClient(std::string_view client_name, std::string_view local_ip_address,
75 std::uint16_t local_port_num, std::string_view ca_certification_path,
122 std::uint16_t host_port_num);
Class to provide implementation of tls client.
Client that manages secured tcp connection.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
core_type::Result< void > ConnectToHost(std::string_view host_ip_address, std::uint16_t host_port_num)
Function to connect to remote ip address and port number.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
void DeInitialize() noexcept
De-initialize the client.
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
boost_support::message::tcp::TcpMessagePtr MessagePtr
Type alias for Tcp message pointer.
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
~TlsClient() noexcept
Destruct an instance of TlsClient.
TlsClient(const TlsClient &other) noexcept=delete
Deleted copy assignment and copy constructor.
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
std::unique_ptr< TlsClientImpl > tls_client_impl_
Unique pointer to tls client implementation.
TlsClient & operator=(TlsClient &&other) noexcept
TlsClient(TlsClient &&other) noexcept
Move assignment and move constructor.
TlsClient & operator=(const TlsClient &other) noexcept=delete
TlsClient(std::string_view client_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::string_view ca_certification_path, TlsVersion tls_version) noexcept
Constructs an instance of TlsClient.
void Initialize() noexcept
Initialize the client.
Immutable class to store received tcp message.
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
std::unique_ptr< TcpMessage const > TcpMessageConstPtr
The unique pointer to const TcpMessage.
core_type::Result< T, E > Result
Class type to contains a value (of type ValueType), or an error (of type ErrorType)