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
5
namespace
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
9
static_assert
(
sizeof
(InterfaceInfo) ==
sizeof
(
struct
if_nameindex));
10
11
void
InterfaceEnumerator::clear
() {
12
if
(m_list) {
13
::if_freenameindex(m_list);
14
m_list =
nullptr
;
15
}
16
}
17
18
void
InterfaceEnumerator::fetch
() {
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
cosmos::ApiError
Specialized exception type used when system APIs fail.
Definition
ApiError.hxx:18
cosmos::InterfaceEnumerator::clear
void clear()
Clear a previously fetched result.
Definition
InterfaceEnumerator.cxx:11
cosmos::InterfaceEnumerator::fetch
void fetch()
Fetch a new snapshot of InterfaceInfo instances.
Definition
InterfaceEnumerator.cxx:18
cosmos::InterfaceInfo
Network interface name to index mapping info.
Definition
InterfaceInfo.hxx:14
src
net
InterfaceEnumerator.cxx
Generated by
1.12.0