libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ip_aux.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <cstring>
5#include <vector>
6
7// Cosmos
8#include <cosmos/dso_export.h>
9#include <cosmos/net/message_header.hxx>
10#include <cosmos/net/SocketError.hxx>
11
12namespace cosmos {
13
22
27template <SocketFamily FAMILY>
29 public AncillaryMessage<
30 FamilyTraits<FAMILY>::OPT_LEVEL,
31 typename FamilyTraits<FAMILY>::CtrlMsg> {
32public: // types
33
35
36public: // functions
37
38 void deserialize(const ReceiveMessageHeader::ControlMessage &msg);
39
41 const SocketError* error() const {
42 if (m_data.empty())
43 return nullptr;
44
45 return reinterpret_cast<const SocketError*>(m_data.data());
46 }
47
48protected: // functions
49 std::vector<uint8_t> m_data;
50};
51
52using IP4SocketErrorMessage = SocketErrorMessage<SocketFamily::INET>;
53using IP6SocketErrorMessage = SocketErrorMessage<SocketFamily::INET6>;
54
55extern template class COSMOS_API SocketErrorMessage<SocketFamily::INET>;
56extern template class COSMOS_API SocketErrorMessage<SocketFamily::INET6>;
57
58} // end ns
Base class for types that deal with (de)serializing ancillary socket messages.
Wrapper for struct cmsghdr used for iterating over received control messages.
Wrapper for the IPMessage::RECVERR ancillary message.
Definition ip_aux.hxx:31
const SocketError * error() const
Returns the currently deserialized SocketError, if any, otherwise nullptr.
Definition ip_aux.hxx:41
Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::REC...