libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::ReceiveMessageHeader::ControlMessage Class Reference

Wrapper for struct cmsghdr used for iterating over received control messages. More...

#include <message_header.hxx>

Public Member Functions

OptLevel level () const
 This defines the basic option level this control message is for.
 
std::optional< UnixMessageasUnixMessage () const
 Return the UnixMessage ancillary message type, if applicable.
 
std::optional< IP4MessageasIP4Message () const
 
std::optional< IP6MessageasIP6Message () const
 
const void * data () const
 Returns the data portion of the control message.
 
size_t dataLength () const
 The amount of bytes found at data().
 

Protected Member Functions

int type () const
 Returns the raw control message type (which is a different type depending on level().
 
auto length () const
 Returns the length of this control message including the header.
 

Protected Attributes

struct cmsghdr m_header
 The raw control message header of this ancillary message.
 

Friends

template<OptLevel , typename MSG_TYPE >
class AncillaryMessage
 

Detailed Description

Wrapper for struct cmsghdr used for iterating over received control messages.

Definition at line 256 of file message_header.hxx.

Member Function Documentation

◆ asIP4Message()

std::optional< IP4Message > cosmos::ReceiveMessageHeader::ControlMessage::asIP4Message ( ) const
inline

Definition at line 291 of file message_header.hxx.

291 {
292 if (level() == OptLevel::IP) {
293 return IP4Message{type()};
294 }
295
296 return std::nullopt;
297 }
int type() const
Returns the raw control message type (which is a different type depending on level().
OptLevel level() const
This defines the basic option level this control message is for.
IP4Message
Ancillary message types available for IPv4 based sockets.
Definition types.hxx:266

◆ asIP6Message()

std::optional< IP6Message > cosmos::ReceiveMessageHeader::ControlMessage::asIP6Message ( ) const
inline

Definition at line 299 of file message_header.hxx.

299 {
300 if (level() == OptLevel::IPV6) {
301 return IP6Message{type()};
302 }
303
304 return std::nullopt;
305 }
IP6Message
Ancillary message types available for IPv6 based sockets.
Definition types.hxx:280

◆ asUnixMessage()

std::optional< UnixMessage > cosmos::ReceiveMessageHeader::ControlMessage::asUnixMessage ( ) const
inline

Return the UnixMessage ancillary message type, if applicable.

Definition at line 283 of file message_header.hxx.

283 {
284 if (level() == OptLevel::SOCKET) {
285 return UnixMessage{type()};
286 }
287
288 return std::nullopt;
289 }
UnixMessage
Ancillary message types available for UNIX domain sockets.
Definition types.hxx:259

◆ data()

const void * cosmos::ReceiveMessageHeader::ControlMessage::data ( ) const
inline

Returns the data portion of the control message.

This pointer is not necessarily suitably aligned to access arbitrary (casted) data structures through it. Applications need to copy the data via memcpy() into suitably located data structures.

Definition at line 314 of file message_header.hxx.

314 {
315 return CMSG_DATA(&m_header);
316 }
struct cmsghdr m_header
The raw control message header of this ancillary message.

◆ dataLength()

size_t cosmos::ReceiveMessageHeader::ControlMessage::dataLength ( ) const
inline

The amount of bytes found at data().

Definition at line 319 of file message_header.hxx.

319 {
320 return length() - sizeof(m_header);
321 }
auto length() const
Returns the length of this control message including the header.

◆ length()

auto cosmos::ReceiveMessageHeader::ControlMessage::length ( ) const
inlineprotected

Returns the length of this control message including the header.

Definition at line 267 of file message_header.hxx.

267 {
268 return m_header.cmsg_len;
269 }

◆ level()

OptLevel cosmos::ReceiveMessageHeader::ControlMessage::level ( ) const
inline

This defines the basic option level this control message is for.

The option level determines how the rest of the control message is to be interpreted.

Definition at line 278 of file message_header.hxx.

278 {
279 return OptLevel{m_header.cmsg_level};
280 }
OptLevel
Representation of socket option levels.
Definition types.hxx:90

◆ type()

int cosmos::ReceiveMessageHeader::ControlMessage::type ( ) const
inlineprotected

Returns the raw control message type (which is a different type depending on level().

Definition at line 262 of file message_header.hxx.

262 {
263 return m_header.cmsg_type;
264 }

Friends And Related Symbol Documentation

◆ AncillaryMessage

template<OptLevel , typename MSG_TYPE >
friend class AncillaryMessage
friend

Definition at line 258 of file message_header.hxx.

Member Data Documentation

◆ m_header

struct cmsghdr cosmos::ReceiveMessageHeader::ControlMessage::m_header
protected

The raw control message header of this ancillary message.

Definition at line 326 of file message_header.hxx.


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