libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InterfaceEnumerator.cxx
1// cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/net/InterfaceEnumerator.hxx>
4
5namespace cosmos {
6
7// this type is only supposed to be a thin C++ wrapper that can be casted
8// directory to the plain C struct
9static_assert(sizeof(InterfaceInfo) == sizeof(struct if_nameindex));
10
12 if (m_list) {
13 ::if_freenameindex(m_list);
14 m_list = nullptr;
15 }
16}
17
19 clear();
20 m_list = reinterpret_cast<InterfaceInfo*>(::if_nameindex());
21
22 if (!m_list) {
23 cosmos_throw(ApiError("ifnameindex()"));
24 }
25}
26
27} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
void clear()
Clear a previously fetched result.
void fetch()
Fetch a new snapshot of InterfaceInfo instances.
Network interface name to index mapping info.