libcosmos
Linux C++ System Programming Library
|
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< UnixMessage > | asUnixMessage () const |
Return the UnixMessage ancillary message type, if applicable. | |
std::optional< IP4Message > | asIP4Message () const |
std::optional< IP6Message > | asIP6Message () 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 |
Wrapper for struct cmsghdr
used for iterating over received control messages.
Definition at line 256 of file message_header.hxx.
|
inline |
Definition at line 291 of file message_header.hxx.
|
inline |
Definition at line 299 of file message_header.hxx.
|
inline |
Return the UnixMessage ancillary message type, if applicable.
Definition at line 283 of file message_header.hxx.
|
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.
|
inline |
The amount of bytes found at data().
Definition at line 319 of file message_header.hxx.
|
inlineprotected |
Returns the length of this control message including the header.
Definition at line 267 of file message_header.hxx.
|
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.
|
inlineprotected |
Returns the raw control message type (which is a different type depending on level()
.
Definition at line 262 of file message_header.hxx.
|
friend |
Definition at line 258 of file message_header.hxx.
|
protected |
The raw control message header of this ancillary message.
Definition at line 326 of file message_header.hxx.