11#include <cosmos/BitMask.hxx>
12#include <cosmos/SysString.hxx>
13#include <cosmos/net/IPAddress.hxx>
14#include <cosmos/net/LinkLayerAddress.hxx>
15#include <cosmos/net/types.hxx>
29enum class InterfaceFlag :
unsigned int {
31 BROADCAST = IFF_BROADCAST,
33 LOOPBACK = IFF_LOOPBACK,
34 POINTOPOINT = IFF_POINTOPOINT,
35 NOTRAILERS = IFF_NOTRAILERS,
36 RUNNING = IFF_RUNNING,
38 PROMISC = IFF_PROMISC,
39 ALLMULTI = IFF_ALLMULTI,
42 MULTICAST = IFF_MULTICAST,
43 PORTSEL = IFF_PORTSEL,
44 AUTOMEDIA = IFF_AUTOMEDIA,
45 DYNAMIC = IFF_DYNAMIC,
46 LOWER_UP = IFF_LOWER_UP,
47 DORMANT = IFF_DORMANT,
52using InterfaceFlags = BitMask<InterfaceFlag>;
95 return SocketFamily::UNSPEC;
102 return ifa_addr !=
nullptr;
107 return ifa_netmask !=
nullptr;
116 if (!
flags()[InterfaceFlag::BROADCAST])
119 return ifa_broadaddr !=
nullptr;
124 if (!
flags()[InterfaceFlag::POINTOPOINT])
127 return ifa_dstaddr !=
nullptr;
132 return family() == SocketFamily::INET;
137 return family() == SocketFamily::INET6;
142 return family() == SocketFamily::PACKET;
162 std::optional<cosmos::LinkLayerAddress>
addrAsLLA()
const {
A typesafe bit mask representation using class enums.
A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
A single network interface address.
std::optional< cosmos::IP4Address > broadcastAsIP4() const
If an IPv4 broadcast address is available, return it.
std::optional< cosmos::IP4Address > pointToPointAsIP4() const
If an IPv4 point-to-point destination is available, return it.
std::optional< cosmos::IP6Address > addrAsIP6() const
If this is an IPv6 address, return it.
SocketFamily family() const
Returns the SocketFamily this address is about.
std::optional< cosmos::LinkLayerAddress > addrAsLLA() const
If this is a link layer address, return it.
bool hasNetmask() const
Returns whether a netmask address is available in this entry.
bool hasPointToPointDest() const
Returns whether a point-to-point destination is available in this entry.
bool hasAddress() const
Returns whether an address is available in this entry.
InterfaceFlags flags() const
Returns the current interface status flags.
std::optional< cosmos::IP4Address > addrAsIP4() const
If this is an IPv4 address, return it.
std::optional< cosmos::IP6Address > netmaskAsIP6() const
If an IPv6 netmask is available, return it.
bool isIP4() const
Returns whether the interface address is an IPv4 address.
bool hasBroadcastAddress() const
Returns whether a broadcast address is available in this entry.
SysString ifname() const
Returns the unique string that identifies the network device that this address belongs to.
bool isLinkLayer() const
Returns whether the interface address is a LinkLayerAddress.
std::optional< cosmos::IP4Address > netmaskAsIP4() const
If an IPv4 netmask is available, return it.
bool isIP6() const
Returns whether the interface address is an IPv6 address.
A link layer (network layer 2) socket address.
SocketFamily
A socket's family setting.
Wrapper type around a C-style string for use with system APIs.