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
5
namespace
cosmos {
6
7
MACAddress
LinkLayerAddress::macAddress
()
const
{
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
cosmos::LinkLayerAddress::macAddress
MACAddress macAddress() const
Returns the link layer MAC address stored in the address.
Definition
LinkLayerAddress.cxx:7
cosmos::RuntimeError
Exception type for generic runtime errors.
Definition
RuntimeError.hxx:14
cosmos::MACAddress
A 48-bit ethernet 802.3 MAC address.
Definition
types.hxx:164
src
net
LinkLayerAddress.cxx
Generated by
1.12.0