libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ip_aux.cxx
1// C++
2#include <type_traits>
3
4// Cosmos
5#include <cosmos/error/RuntimeError.hxx>
6#include <cosmos/net/IPAddress.hxx>
7#include <cosmos/net/ip_aux.hxx>
8#include <cosmos/net/traits.hxx>
9
10namespace cosmos {
11
12static_assert(sizeof(IP4SocketError) == sizeof(struct sock_extended_err), "size mismatch between SocketError and struct sock_extended_err!");
13
14template <SocketFamily FAMILY>
15void SocketErrorMessage<FAMILY>::deserialize(const ReceiveMessageHeader::ControlMessage &msg) {
16 this->checkMsg(msg, FamilyTraits<FAMILY>::CtrlMsg::RECVERR);
17
18 m_data.clear();
19 auto data = msg.data();
20
21 // The SocketError can carry additional piggyback data not declared in
22 // the struct (notably: the offender sockaddr). Thus we need to be
23 // prepared to allocate more memory than sizeof(SocketError). For this
24 // reason we use a vector as memory backend for the error.
25
26 if (msg.dataLength() < sizeof(SocketError)) {
27 cosmos_throw (RuntimeError("IP_RECVERR ancillary message too small"));
28 }
29
30 m_data.resize(msg.dataLength());
31
32 std::memcpy(m_data.data(), data, msg.dataLength());
33}
34
35template class SocketErrorMessage<SocketFamily::INET>;
36template class SocketErrorMessage<SocketFamily::INET6>;
37
38} // end ns