libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InterfaceAddressList.cxx
1
// cosmos
2
#include <cosmos/error/ApiError.hxx>
3
#include <cosmos/net/InterfaceAddressList.hxx>
4
5
namespace
cosmos {
6
7
// this is only an interface wrapper around the system structure, no
8
// additional data must be added so that pointers can be casted from ifaddrs
9
// to InterfaceAddress.
10
static_assert
(
sizeof
(InterfaceAddress) ==
sizeof
(
struct
ifaddrs));
11
12
void
InterfaceAddressList::fetch
() {
13
clear
();
14
if
(::getifaddrs(&m_addrs) != 0) {
15
cosmos_throw (
ApiError
(
"getifaddrs()"
));
16
}
17
}
18
19
void
InterfaceAddressList::clear
() {
20
if
(m_addrs) {
21
::freeifaddrs(m_addrs);
22
m_addrs =
nullptr
;
23
}
24
}
25
26
}
// end ns
cosmos::ApiError
Specialized exception type used when system APIs fail.
Definition
ApiError.hxx:18
cosmos::InterfaceAddressList::clear
void clear()
Clear stored interface addresses.
Definition
InterfaceAddressList.cxx:19
cosmos::InterfaceAddressList::fetch
void fetch()
Fetch a snapshot of the current list of network interface addresses.
Definition
InterfaceAddressList.cxx:12
src
net
InterfaceAddressList.cxx
Generated by
1.12.0