libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SocketErrorMessage< FAMILY > Class Template Reference

Wrapper for the IPMessage::RECVERR ancillary message. More...

#include <ip_aux.hxx>

+ Inheritance diagram for cosmos::SocketErrorMessage< FAMILY >:

Public Types

using SocketError = SocketErrorT<FAMILY>
 

Public Member Functions

void deserialize (const ReceiveMessageHeader::ControlMessage &msg)
 
const SocketErrorerror () const
 Returns the currently deserialized SocketError, if any, otherwise nullptr.
 

Protected Attributes

std::vector< uint8_t > m_data
 

Additional Inherited Members

- Protected Member Functions inherited from cosmos::AncillaryMessage< FamilyTraits< FAMILY >::OPT_LEVEL, FamilyTraits< FAMILY >::CtrlMsg >
SendMessageHeader::ControlMessage createMsg (FamilyTraits< FAMILY >::CtrlMsg type, const size_t data_len) const
 
void checkMsg (const ReceiveMessageHeader::ControlMessage &msg, FamilyTraits< FAMILY >::CtrlMsg type) const
 
uint8_t * data (SendMessageHeader::ControlMessage &msg) const
 

Detailed Description

template<SocketFamily FAMILY>
class cosmos::SocketErrorMessage< FAMILY >

Wrapper for the IPMessage::RECVERR ancillary message.

IP based datagram sockets can report extended error messages. To receive them the MessageFlag::ERRQUEUE needs to be passed to Socket::receiveMessage().

Definition at line 28 of file ip_aux.hxx.

Member Typedef Documentation

◆ SocketError

template<SocketFamily FAMILY>
using cosmos::SocketErrorMessage< FAMILY >::SocketError = SocketErrorT<FAMILY>

Definition at line 34 of file ip_aux.hxx.

Member Function Documentation

◆ deserialize()

template<SocketFamily FAMILY>
void cosmos::SocketErrorMessage< FAMILY >::deserialize ( const ReceiveMessageHeader::ControlMessage & msg)

Definition at line 15 of file ip_aux.cxx.

15 {
16 this->checkMsg(msg, FamilyTraits<FAMILY>::CtrlMsg::RECVERR);
17
18 m_data.clear();
19 auto data = msg.data();
20
21 // The SocketError can carry additional piggyback data not declared in
22 // the struct (notably: the offender sockaddr). Thus we need to be
23 // prepared to allocate more memory than sizeof(SocketError). For this
24 // reason we use a vector as memory backend for the error.
25
26 if (msg.dataLength() < sizeof(SocketError)) {
27 cosmos_throw (RuntimeError("IP_RECVERR ancillary message too small"));
28 }
29
30 m_data.resize(msg.dataLength());
31
32 std::memcpy(m_data.data(), data, msg.dataLength());
33}

◆ error()

template<SocketFamily FAMILY>
const SocketError * cosmos::SocketErrorMessage< FAMILY >::error ( ) const
inline

Returns the currently deserialized SocketError, if any, otherwise nullptr.

Definition at line 41 of file ip_aux.hxx.

41 {
42 if (m_data.empty())
43 return nullptr;
44
45 return reinterpret_cast<const SocketError*>(m_data.data());
46 }

Member Data Documentation

◆ m_data

template<SocketFamily FAMILY>
std::vector<uint8_t> cosmos::SocketErrorMessage< FAMILY >::m_data
protected

Definition at line 49 of file ip_aux.hxx.


The documentation for this class was generated from the following files: