8#include <cosmos/dso_export.h>
9#include <cosmos/net/message_header.hxx>
10#include <cosmos/net/SocketError.hxx>
27template <SocketFamily FAMILY>
30 FamilyTraits<FAMILY>::OPT_LEVEL,
31 typename FamilyTraits<FAMILY>::CtrlMsg> {
45 return reinterpret_cast<const SocketError*
>(m_data.data());
49 std::vector<uint8_t> m_data;
52using IP4SocketErrorMessage = SocketErrorMessage<SocketFamily::INET>;
53using IP6SocketErrorMessage = SocketErrorMessage<SocketFamily::INET6>;
55extern template class COSMOS_API SocketErrorMessage<SocketFamily::INET>;
56extern template class COSMOS_API SocketErrorMessage<SocketFamily::INET6>;
Base class for types that deal with (de)serializing ancillary socket messages.
Wrapper for the IPMessage::RECVERR ancillary message.
const SocketError * error() const
Returns the currently deserialized SocketError, if any, otherwise nullptr.
Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::REC...