Diag-Client-Lib
|
Client that manages secured tcp connection. More...
#include <tls_client.h>
Classes | |
class | TlsClientImpl |
Class to provide implementation of tls client. More... | |
Public Types | |
using | Message = boost_support::message::tcp::TcpMessage |
Type alias for Tcp message. More... | |
using | MessagePtr = boost_support::message::tcp::TcpMessagePtr |
Type alias for Tcp message pointer. More... | |
using | MessageConstPtr = boost_support::message::tcp::TcpMessageConstPtr |
Type alias for Tcp message const pointer. More... | |
using | HandlerRead = std::function< void(MessagePtr)> |
Tcp function template used for reception. More... | |
Public Member Functions | |
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. More... | |
TlsClient (const TlsClient &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
TlsClient & | operator= (const TlsClient &other) noexcept=delete |
TlsClient (TlsClient &&other) noexcept | |
Move assignment and move constructor. More... | |
TlsClient & | operator= (TlsClient &&other) noexcept |
~TlsClient () noexcept | |
Destruct an instance of TlsClient. More... | |
void | Initialize () noexcept |
Initialize the client. More... | |
void | DeInitialize () noexcept |
De-initialize the client. More... | |
void | SetReadHandler (HandlerRead read_handler) noexcept |
Function to set the read handler that is invoked when message is received. More... | |
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. More... | |
core_type::Result< void > | DisconnectFromHost () |
Function to disconnect from remote host if already connected. More... | |
auto | IsConnectedToHost () const noexcept -> bool |
Function to get the connection status. More... | |
core_type::Result< void > | Transmit (MessageConstPtr tcp_message) |
Function to transmit the provided tcp message. More... | |
Private Attributes | |
std::unique_ptr< TlsClientImpl > | tls_client_impl_ |
Unique pointer to tls client implementation. More... | |
Client that manages secured tcp connection.
TlsVersion | The tls version to be used by client for communication |
Definition at line 42 of file tls_client.h.
using boost_support::client::tls::TlsClient< TlsVersion >::HandlerRead = std::function<void(MessagePtr)> |
Tcp function template used for reception.
Definition at line 62 of file tls_client.h.
using boost_support::client::tls::TlsClient< TlsVersion >::Message = boost_support::message::tcp::TcpMessage |
Type alias for Tcp message.
Definition at line 47 of file tls_client.h.
using boost_support::client::tls::TlsClient< TlsVersion >::MessageConstPtr = boost_support::message::tcp::TcpMessageConstPtr |
Type alias for Tcp message const pointer.
Definition at line 57 of file tls_client.h.
using boost_support::client::tls::TlsClient< TlsVersion >::MessagePtr = boost_support::message::tcp::TcpMessagePtr |
Type alias for Tcp message pointer.
Definition at line 52 of file tls_client.h.
|
noexcept |
Constructs an instance of TlsClient.
[in] | local_ip_address | The local ip address |
[in] | local_port_num | The local port number |
[in] | ca_certification_path | The path to root ca certificate |
Definition at line 230 of file tls_client.cpp.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
defaultnoexcept |
Move assignment and move constructor.
|
defaultnoexcept |
Destruct an instance of TlsClient.
core_type::Result< void > boost_support::client::tls::TlsClient< TlsVersion >::ConnectToHost | ( | std::string_view | host_ip_address, |
std::uint16_t | host_port_num | ||
) |
Function to connect to remote ip address and port number.
[in] | host_ip_address | The host ip address |
[in] | host_port_num | The host port number |
Definition at line 263 of file tls_client.cpp.
|
noexcept |
De-initialize the client.
Definition at line 253 of file tls_client.cpp.
core_type::Result< void > boost_support::client::tls::TlsClient< TlsVersion >::DisconnectFromHost |
Function to disconnect from remote host if already connected.
Definition at line 269 of file tls_client.cpp.
|
noexcept |
Initialize the client.
Definition at line 248 of file tls_client.cpp.
|
noexcept |
Function to get the connection status.
Definition at line 274 of file tls_client.cpp.
|
deletenoexcept |
|
defaultnoexcept |
|
noexcept |
Function to set the read handler that is invoked when message is received.
The ownership of provided read handler is moved
[in] | read_handler | The handler to be set |
Definition at line 258 of file tls_client.cpp.
core_type::Result< void > boost_support::client::tls::TlsClient< TlsVersion >::Transmit | ( | MessageConstPtr | tcp_message | ) |
Function to transmit the provided tcp message.
[in] | tcp_message | The tcp message |
Definition at line 279 of file tls_client.cpp.
|
private |
Unique pointer to tls client implementation.
Definition at line 153 of file tls_client.h.