libcosmos
Linux C++ System Programming Library
|
Wrapper for struct cmsghdr
used for creating new control messages for sending.
More...
#include <message_header.hxx>
Protected Member Functions | |
ControlMessage (const OptLevel level, int type, const size_t data_len) | |
Creates a new control message for the given level, type and size. | |
uint8_t * | data () |
Returns the data portion of the control message. | |
const uint8_t * | data () const |
size_t | dataSpace () const |
Returns the amount of bytes that can be stored at data(). | |
const void * | raw () const |
Returns the pointer to the complete control message for the msg_control field in struct msghdr . | |
size_t | size () const |
Returns the size of the complete control message for the msg_controllen field in struct msghdr . | |
Protected Attributes | |
std::vector< uint8_t > | m_buffer |
The raw data the control message is composed of. | |
struct cmsghdr * | m_header = nullptr |
Pointer to the beginning of m_buffer for setting header data. | |
Friends | |
template<OptLevel , typename MSG_TYPE > | |
class | AncillaryMessage |
class | SendMessageHeader |
Wrapper for struct cmsghdr
used for creating new control messages for sending.
Only specialized serialization helpers may create instances of this type. These types know how to serialize their state into a ControlMessage for sending.
Definition at line 152 of file message_header.hxx.
|
protected |
Creates a new control message for the given level, type and size.
[in] | type | The plain integer denoting the type of control message. Since this type depends on the OptLevel, there is no way to use a single strong type here. Serialization helpers need to ensure that the type and its value are sane. |
[in] | data_len | The number of bytes that need to be stored in the control message. This size needs to be known in advance and cannot be changed during the lifetime of an object.. |
Definition at line 17 of file message_header.cxx.
|
inlineprotected |
Returns the data portion of the control message.
This is the location where the actual message data needs to go.
Definition at line 178 of file message_header.hxx.
|
inlineprotected |
Definition at line 182 of file message_header.hxx.
|
inlineprotected |
Returns the amount of bytes that can be stored at data().
Definition at line 187 of file message_header.hxx.
|
inlineprotected |
Returns the pointer to the complete control message for the msg_control
field in struct msghdr
.
Definition at line 192 of file message_header.hxx.
|
inlineprotected |
Returns the size of the complete control message for the msg_controllen
field in struct msghdr
.
Definition at line 197 of file message_header.hxx.
|
friend |
Definition at line 154 of file message_header.hxx.
|
friend |
Definition at line 155 of file message_header.hxx.
|
protected |
The raw data the control message is composed of.
Definition at line 204 of file message_header.hxx.
|
protected |
Pointer to the beginning of m_buffer for setting header data.
Definition at line 206 of file message_header.hxx.