libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InterfaceEnumerator.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/dso_export.h>
5#include <cosmos/net/InterfaceInfo.hxx>
6#include <cosmos/net/InterfaceIterator.hxx>
7#include <cosmos/net/types.hxx>
8
9namespace cosmos {
10
12
22class COSMOS_API InterfaceEnumerator {
23public: // functions
25 clear();
26 }
27
29 void fetch();
30
32 void clear();
33
34 InterfaceIterator begin() {
35 return InterfaceIterator{m_list};
36 }
37
38 InterfaceIterator end() {
39 return InterfaceIterator{};
40 }
41
42 bool valid() const {
43 return m_list != nullptr;
44 }
45
46protected: // data
47 InterfaceInfo *m_list = nullptr;
48};
49
50} // end ns
Enumerate all local network interfaces.
Helper class to iterate over InterfaceEnumerator.
Network interface name to index mapping info.