libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InterfaceInfo.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/types.hxx>
5#include <cosmos/SysString.hxx>
6
7namespace cosmos {
8
10
14 protected ::if_nameindex {
15
17 SysString name() const {
18 return SysString{this->if_name};
19 }
20
23 return InterfaceIndex{static_cast<int>(this->if_index)};
24 }
25
26protected: // functions
27
28 constexpr InterfaceInfo() :
29 if_nameindex{0, nullptr} {
30 }
31
32 friend class InterfaceIterator;
33 friend class InterfaceEnumerator;
34};
35
36} // end ns
InterfaceIndex
A network device interface index.
Definition types.hxx:119
Network interface name to index mapping info.
InterfaceIndex index() const
Returns the network interface index.
SysString name() const
Returns the network interface name.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33