libcosmos
Linux C++ System Programming Library
|
A link layer (network layer 2) socket address. More...
#include <LinkLayerAddress.hxx>
Public Member Functions | |
LinkLayerAddress (const sockaddr_ll &addr) | |
SocketFamily | family () const override |
Returns the concrete SocketFamily for the implementation address type. | |
size_t | size () const override |
Returns the size of the structure considering the currently set path length only. | |
EthernetProtocol | protocol () const |
Returns the ethernet protocol stored in the address. | |
void | setProtocol (const EthernetProtocol prot) |
Sets the ethernet protocol portion of the address. | |
InterfaceIndex | ifindex () const |
Return the network interface index portion of the address. | |
void | setIfindex (const InterfaceIndex index) |
Sets the network interface index portion of the address. | |
ARPType | arpType () const |
Returns the ARP hardware type portion of the address. | |
PacketType | packetType () const |
Returns the packet type portion of the address. | |
MACAddress | macAddress () const |
Returns the link layer MAC address stored in the address. | |
void | setMacAddress (const MACAddress mac) |
Sets the MAC address portion of the address. | |
![]() | |
virtual size_t | maxSize () const |
Returns the maximum number of bytes the socket address can hold. | |
Protected Member Functions | |
sockaddr * | basePtr () override |
Returns a mutable pointer to the sockaddr* base structure. | |
const sockaddr * | basePtr () const override |
Returns a const pointer to the sockaddr* base structure. | |
![]() | |
void | clear () |
Clears the complete address structure. | |
virtual void | update (size_t new_length) |
Update the address structure after it has been filled in by the kernel. | |
Protected Attributes | |
sockaddr_ll | m_addr |
A link layer (network layer 2) socket address.
This address type is used with packet sockets or for representing network device layer2 addresses (e.g. MAC address for ethernet devices).
Definition at line 139 of file LinkLayerAddress.hxx.
|
inline |
Definition at line 143 of file LinkLayerAddress.hxx.
|
inlineexplicit |
Definition at line 147 of file LinkLayerAddress.hxx.
|
inline |
Returns the ARP hardware type portion of the address.
This datum is only valid on receiving, therefore there is no setter.
Definition at line 185 of file LinkLayerAddress.hxx.
|
inlineoverrideprotectedvirtual |
Returns a const pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 213 of file LinkLayerAddress.hxx.
|
inlineoverrideprotectedvirtual |
Returns a mutable pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 209 of file LinkLayerAddress.hxx.
|
inlineoverridevirtual |
Returns the concrete SocketFamily for the implementation address type.
Implements cosmos::SocketAddress.
Definition at line 151 of file LinkLayerAddress.hxx.
|
inline |
Return the network interface index portion of the address.
Definition at line 171 of file LinkLayerAddress.hxx.
MACAddress cosmos::LinkLayerAddress::macAddress | ( | ) | const |
Returns the link layer MAC address stored in the address.
Definition at line 7 of file LinkLayerAddress.cxx.
|
inline |
Returns the packet type portion of the address.
This datum is only valid on receiving, therefore there is no setter.
Definition at line 194 of file LinkLayerAddress.hxx.
|
inline |
Returns the ethernet protocol stored in the address.
Definition at line 161 of file LinkLayerAddress.hxx.
|
inline |
Sets the network interface index portion of the address.
Definition at line 176 of file LinkLayerAddress.hxx.
|
inline |
Sets the MAC address portion of the address.
Definition at line 202 of file LinkLayerAddress.hxx.
|
inline |
Sets the ethernet protocol portion of the address.
Definition at line 166 of file LinkLayerAddress.hxx.
|
inlineoverridevirtual |
Returns the size of the structure considering the currently set path length only.
Implements cosmos::SocketAddress.
Definition at line 156 of file LinkLayerAddress.hxx.
|
protected |
Definition at line 219 of file LinkLayerAddress.hxx.