libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::InterfaceInfo Struct Reference

Network interface name to index mapping info. More...

#include <InterfaceInfo.hxx>

+ Inheritance diagram for cosmos::InterfaceInfo:

Public Member Functions

SysString name () const
 Returns the network interface name.
 
InterfaceIndex index () const
 Returns the network interface index.
 

Friends

class InterfaceIterator
 
class InterfaceEnumerator
 

Detailed Description

Network interface name to index mapping info.

This type can only be obtained via InterfaceEnumerator.

Definition at line 13 of file InterfaceInfo.hxx.

Constructor & Destructor Documentation

◆ InterfaceInfo()

cosmos::InterfaceInfo::InterfaceInfo ( )
inlineconstexprprotected

Definition at line 28 of file InterfaceInfo.hxx.

28 :
29 if_nameindex{0, nullptr} {
30 }

Member Function Documentation

◆ index()

InterfaceIndex cosmos::InterfaceInfo::index ( ) const
inline

Returns the network interface index.

Definition at line 22 of file InterfaceInfo.hxx.

22 {
23 return InterfaceIndex{static_cast<int>(this->if_index)};
24 }
InterfaceIndex
A network device interface index.
Definition types.hxx:119

◆ name()

SysString cosmos::InterfaceInfo::name ( ) const
inline

Returns the network interface name.

Definition at line 17 of file InterfaceInfo.hxx.

17 {
18 return SysString{this->if_name};
19 }

Friends And Related Symbol Documentation

◆ InterfaceEnumerator

friend class InterfaceEnumerator
friend

Definition at line 33 of file InterfaceInfo.hxx.

◆ InterfaceIterator

friend class InterfaceIterator
friend

Definition at line 32 of file InterfaceInfo.hxx.


The documentation for this struct was generated from the following file: