Iterator helper type for InterfaceAddressList.
More...
#include <InterfaceAddressIterator.hxx>
|
struct ifaddrs * | m_pos = nullptr |
|
Iterator helper type for InterfaceAddressList.
The struct ifaddrs*
stored in InterfaceAddressList is a linked list. This iterator type walks through this list. This is a simple InputIterator type.
Definition at line 14 of file InterfaceAddressIterator.hxx.
◆ InterfaceAddressIterator()
cosmos::InterfaceAddressIterator::InterfaceAddressIterator |
( |
struct ifaddrs * | pos | ) |
|
|
inlineexplicitprotected |
◆ operator!=()
◆ operator*()
Definition at line 33 of file InterfaceAddressIterator.hxx.
33 {
34 if (!m_pos) {
35 cosmos_throw (RuntimeError("Attempt to dereference invalid InterfaceAddressIterator"));
36 }
37
38 return *(reinterpret_cast<InterfaceAddress*>(m_pos));
39 }
◆ operator++()
auto & cosmos::InterfaceAddressIterator::operator++ |
( |
| ) |
|
|
inline |
Definition at line 24 of file InterfaceAddressIterator.hxx.
24 {
25 if (m_pos) {
26 m_pos = m_pos->ifa_next;
27 } else {
28 cosmos_throw (RuntimeError("Attempt to increment InterfaceAddressIterator past the end"));
29 }
30 return *this;
31 }
◆ operator==()
◆ InterfaceAddressList
◆ m_pos
struct ifaddrs* cosmos::InterfaceAddressIterator::m_pos = nullptr |
|
protected |
The documentation for this class was generated from the following file: