libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::InterfaceEnumerator Class Reference

Enumerate all local network interfaces. More...

#include <InterfaceEnumerator.hxx>

Public Member Functions

void fetch ()
 Fetch a new snapshot of InterfaceInfo instances.
 
void clear ()
 Clear a previously fetched result.
 
InterfaceIterator begin ()
 
InterfaceIterator end ()
 
bool valid () const
 

Protected Attributes

InterfaceInfom_list = nullptr
 

Detailed Description

Enumerate all local network interfaces.

This type allows to retrieve a list of all local network interfaces. The network interface names and interface indexes are available.

To get a new snapshot of the network interface list call fetch(). The begin() and end() iterators allow to iterate over all found entries.

Iterating over an empty enumerator instance is allowed and will yield an empty list.

Definition at line 22 of file InterfaceEnumerator.hxx.

Constructor & Destructor Documentation

◆ ~InterfaceEnumerator()

cosmos::InterfaceEnumerator::~InterfaceEnumerator ( )
inline

Definition at line 24 of file InterfaceEnumerator.hxx.

24 {
25 clear();
26 }
void clear()
Clear a previously fetched result.

Member Function Documentation

◆ begin()

InterfaceIterator cosmos::InterfaceEnumerator::begin ( )
inline

Definition at line 34 of file InterfaceEnumerator.hxx.

34 {
35 return InterfaceIterator{m_list};
36 }

◆ clear()

void cosmos::InterfaceEnumerator::clear ( )

Clear a previously fetched result.

Definition at line 11 of file InterfaceEnumerator.cxx.

11 {
12 if (m_list) {
13 ::if_freenameindex(m_list);
14 m_list = nullptr;
15 }
16}

◆ end()

InterfaceIterator cosmos::InterfaceEnumerator::end ( )
inline

Definition at line 38 of file InterfaceEnumerator.hxx.

38 {
39 return InterfaceIterator{};
40 }

◆ fetch()

void cosmos::InterfaceEnumerator::fetch ( )

Fetch a new snapshot of InterfaceInfo instances.

Definition at line 18 of file InterfaceEnumerator.cxx.

18 {
19 clear();
20 m_list = reinterpret_cast<InterfaceInfo*>(::if_nameindex());
21
22 if (!m_list) {
23 cosmos_throw(ApiError("ifnameindex()"));
24 }
25}

◆ valid()

bool cosmos::InterfaceEnumerator::valid ( ) const
inline

Definition at line 42 of file InterfaceEnumerator.hxx.

42 {
43 return m_list != nullptr;
44 }

Member Data Documentation

◆ m_list

InterfaceInfo* cosmos::InterfaceEnumerator::m_list = nullptr
protected

Definition at line 47 of file InterfaceEnumerator.hxx.


The documentation for this class was generated from the following files: