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
5namespace 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.
10static_assert(sizeof(InterfaceAddress) == sizeof(struct ifaddrs));
11
13 clear();
14 if (::getifaddrs(&m_addrs) != 0) {
15 cosmos_throw (ApiError("getifaddrs()"));
16 }
17}
18
20 if (m_addrs) {
21 ::freeifaddrs(m_addrs);
22 m_addrs = nullptr;
23 }
24}
25
26} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
void clear()
Clear stored interface addresses.
void fetch()
Fetch a snapshot of the current list of network interface addresses.