2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/message_header.hxx>
7static_assert(
sizeof(
struct msghdr_const) ==
sizeof(
struct msghdr),
8 "size mismatch between msghdr_const vs. struct msghdr in system headers");
9static_assert(
sizeof(
struct cmsghdr) ==
sizeof(ReceiveMessageHeader::ControlMessage),
10 "size mismatch between cmsghdr vs. struct ReceiveMessageHeader::ControlMessage in system headers");
18 m_buffer.resize(CMSG_SPACE(data_len));
20 m_header->cmsg_level = to_integral(level);
22 m_header->cmsg_len = CMSG_LEN(data_len);
50 m_control_buffer.clear();
52 }
else if (bytes <
sizeof(cmsghdr)) {
53 cosmos_throw (
RuntimeError(
"control buffer size smaller than control message header"));
56 m_control_buffer.resize(bytes);
68 if (!m_control_buffer.empty()) {
69 m_header.msg_control = m_control_buffer.data();
70 m_header.msg_controllen = m_control_buffer.size();
Exception type for generic runtime errors.
Base class for all types of socket addresses.
virtual size_t maxSize() const
Returns the maximum number of bytes the socket address can hold.
virtual size_t size() const =0
Returns the size of the socket address in bytes found at basePtr().
virtual sockaddr * basePtr()=0
Returns a mutable pointer to the sockaddr* base structure.
OptLevel
Representation of socket option levels.