libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
LinkLayerAddress.cxx
1// cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/LinkLayerAddress.hxx>
4
5namespace cosmos {
6
8 MACAddress ret;
9 if (m_addr.sll_halen != ret.size()) {
10 cosmos_throw(RuntimeError("LinkLayerAddress does not contain a MAC address"));
11 }
12
13 std::memcpy(ret.data(), m_addr.sll_addr, ret.size());
14 return ret;
15}
16
17} // end ns
MACAddress macAddress() const
Returns the link layer MAC address stored in the address.
Exception type for generic runtime errors.
A 48-bit ethernet 802.3 MAC address.
Definition types.hxx:164