libcosmos
Linux C++ System Programming Library
|
#include <cstring>
#include <optional>
#include <cosmos/dso_export.h>
#include <cosmos/error/RuntimeError.hxx>
#include <cosmos/io/iovector.hxx>
#include <cosmos/net/SocketAddress.hxx>
#include <cosmos/net/types.hxx>
Go to the source code of this file.
Classes | |
struct | cosmos::msghdr_const |
Remodelling of struct msghdr with const semantics. More... | |
class | cosmos::MessageHeaderBase< MSGHDR > |
Base class for SendMessageHeader and ReceiveMessageHeader. More... | |
class | cosmos::SendMessageHeader |
Wrapper for struct msghdr for sending messages via Socket::sendMessage(). More... | |
class | cosmos::SendMessageHeader::ControlMessage |
Wrapper for struct cmsghdr used for creating new control messages for sending. More... | |
class | cosmos::ReceiveMessageHeader |
Wrapper for struct msghdr for receiving message via Socket::receiveMessage(). More... | |
class | cosmos::ReceiveMessageHeader::ControlMessage |
Wrapper for struct cmsghdr used for iterating over received control messages. More... | |
class | cosmos::ReceiveMessageHeader::ControlMessageIterator |
Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader. More... | |
class | cosmos::AncillaryMessage< level, MSG_TYPE > |
Base class for types that deal with (de)serializing ancillary socket messages. More... | |
Special types and wrappers used in the Socket::sendMessage() and Socket::receiveMessage() APIs.
These APIs are pretty complex as they allow a lot of different system call configurations and also control messages to be passed. The struct msghdr
behaves quite differently when used for sending as compared to when used for receiving. For this reason we provide different wrappers for both purposes.
Definition in file message_header.hxx.