Diag-Client-Lib
|
Immutable class to store received udp message. More...
#include <udp_message.h>
Public Types | |
using | BufferType = std::vector< uint8_t > |
Type alias for underlying buffer. More... | |
Public Member Functions | |
UdpMessage (std::string_view host_ip_address, std::uint16_t host_port_number, BufferType payload) | |
Constructs an instance of UdpMessage. More... | |
UdpMessage (UdpMessage &&other) noexcept=default | |
UdpMessage & | operator= (UdpMessage &&other) noexcept=default |
UdpMessage (const UdpMessage &other)=delete | |
UdpMessage & | operator= (const UdpMessage &other)=delete |
~UdpMessage ()=default | |
Destructs an instance of UdpMessage. More... | |
std::string_view | GetHostIpAddress () const |
Get the host ip address. More... | |
std::uint16_t | GetHostPortNumber () const |
Get the host port number. More... | |
core_type::Span< std::uint8_t const > | GetPayload () const |
Get the readable view on received payload. More... | |
Private Attributes | |
BufferType | payload_ |
The reception buffer. More... | |
std::string | host_ip_address_ |
Store remote ip address. More... | |
std::uint16_t | host_port_number_ |
Store remote port number. More... | |
Immutable class to store received udp message.
Definition at line 32 of file udp_message.h.
using boost_support::message::udp::UdpMessage::BufferType = std::vector<uint8_t> |
Type alias for underlying buffer.
Definition at line 37 of file udp_message.h.
|
inline |
Constructs an instance of UdpMessage.
[in] | host_ip_address | The host ip address |
[in] | host_port_number | The host port number |
[in] | payload | The received data payload |
Definition at line 49 of file udp_message.h.
|
defaultnoexcept |
|
delete |
|
default |
Destructs an instance of UdpMessage.
|
inline |
Get the host ip address.
Definition at line 69 of file udp_message.h.
References host_ip_address_.
|
inline |
Get the host port number.
Definition at line 75 of file udp_message.h.
References host_port_number_.
|
inline |
Get the readable view on received payload.
Definition at line 81 of file udp_message.h.
References payload_.
|
delete |
|
defaultnoexcept |
|
private |
Store remote ip address.
Definition at line 94 of file udp_message.h.
Referenced by GetHostIpAddress().
|
private |
Store remote port number.
Definition at line 99 of file udp_message.h.
Referenced by GetHostPortNumber().
|
private |