libcosmos
Linux C++ System Programming Library
|
Wrapper for struct msghdr
for receiving message via Socket::receiveMessage().
More...
#include <message_header.hxx>
Classes | |
class | ControlMessage |
Wrapper for struct cmsghdr used for iterating over received control messages. More... | |
class | ControlMessageIterator |
Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader. More... | |
Public Member Functions | |
MessageFlags | flags () const |
Returns the MessageFlags provided by the last recvmsg() operation. | |
void | setControlBufferSize (const size_t bytes) |
Set the size of the buffer used for receiving ancillary messages. | |
void | clearControlBuffer () |
No longer receive control messages. | |
ControlMessageIterator | begin () |
ControlMessageIterator | end () |
![]() | |
MessageHeaderBase () | |
Create a MSGHDR initialized to all zeroes and with default flags applied. | |
void | clear () |
Clear the complete system call structure with zeroes. | |
void | setIOFlags (const MessageFlags flags) |
Set the flags used for sending or receiving data. | |
Public Attributes | |
ReadIOVector | iovec |
Memory regions to receive data into. | |
Protected Member Functions | |
void | prepareReceive (SocketAddress *addr) |
Prepare a recvmsg() operation using the given optional source address storage. | |
void | postReceive (size_t received) |
Perform any cleanup or bookkeeping after a successful recvmsg() operation. | |
void | setAddress (SocketAddress &addr) |
Fill in the source address storage fields of the struct msghdr for the given address object. | |
struct msghdr * | rawHeader () |
const struct msghdr * | rawHeader () const |
![]() | |
void | resetAddress () |
Reset the address portion of the msghdr struct. | |
void | setIov (IOVEC &iovec) |
Set the msg_iov fields of the msghdr struct based on the given iovector object. | |
MessageFlags | ioFlags () const |
Returns the currently set MessageFlags for send/receive. | |
Protected Attributes | |
std::vector< uint8_t > | m_control_buffer |
Optional buffer used to receive ancillary messages. | |
![]() | |
msghdr | m_header |
The low level struct msghdr | |
MessageFlags | m_io_flags |
The currently configured send/receive flags. | |
Friends | |
class | Socket |
Wrapper for struct msghdr
for receiving message via Socket::receiveMessage().
This type holds extended data for receiving a message over a socket. For one it allows receiving data into multiple scattered memory regions using a ReadIOVector. Furthermore additional ancillary data can be received, if setup via setControlBufferSize()
. The public iovec
member is used for setting up the according memory regions for receiving. These settings will be applied when passing the ReceiveMessageHeader to Socket::receiveMessage() or one of its specializations.
This type implements an iterator interface to iterate over any received ancillary messages. Beware that ancillary data may arrive in a different order and payload/ancillary data combination than it was sent.
Definition at line 250 of file message_header.hxx.
|
inline |
Definition at line 416 of file message_header.hxx.
|
inline |
No longer receive control messages.
Definition at line 412 of file message_header.hxx.
|
inline |
Definition at line 420 of file message_header.hxx.
|
inline |
Returns the MessageFlags provided by the last recvmsg()
operation.
Definition at line 391 of file message_header.hxx.
|
inlineprotected |
Perform any cleanup or bookkeeping after a successful recvmsg()
operation.
Definition at line 430 of file message_header.hxx.
|
protected |
Prepare a recvmsg()
operation using the given optional source address storage.
Definition at line 59 of file message_header.cxx.
|
inlineprotected |
Definition at line 437 of file message_header.hxx.
|
inlineprotected |
Definition at line 441 of file message_header.hxx.
|
protected |
Fill in the source address storage fields of the struct msghdr
for the given address object.
Definition at line 43 of file message_header.cxx.
void cosmos::ReceiveMessageHeader::setControlBufferSize | ( | const size_t | bytes | ) |
Set the size of the buffer used for receiving ancillary messages.
By default no ancillary messages will be received. Setting this buffer size expresses the intent to receive ControlMessages in future calls to Socket::receiveMessage()
or one of its specializations. This setting remains active until clearControlBuffer() is called.
Note that receiving ancillary messages should not be taken lightly, especially with UNIX domain sockets. Other processes connected to this socket can now send file descriptors to this process, that will use up entries in the file descriptor table unless properly dealt with by the application.
Definition at line 48 of file message_header.cxx.
|
friend |
Definition at line 252 of file message_header.hxx.
ReadIOVector cosmos::ReceiveMessageHeader::iovec |
Memory regions to receive data into.
Definition at line 386 of file message_header.hxx.
|
protected |
Optional buffer used to receive ancillary messages.
Definition at line 448 of file message_header.hxx.