Helper class to iterate over AddressInfoList.
More...
#include <AddressInfoIterator.hxx>
Helper class to iterate over AddressInfoList.
AddressInfoList holds a list of AddressInfo structs allocated in libc. This type is able to iterate over the list. Usually you don't need to use it explicitly, a range based for loop used on AddressInfoList will use it automatically.
The end of the list is marked by a nullptr ai_next field in AddressInfo.
Definition at line 18 of file AddressInfoIterator.hxx.
◆ AddressInfoIterator() [1/2]
cosmos::AddressInfoIterator::AddressInfoIterator |
( |
| ) |
|
|
inline |
◆ AddressInfoIterator() [2/2]
cosmos::AddressInfoIterator::AddressInfoIterator |
( |
const AddressInfo * | pos | ) |
|
|
inlineexplicit |
◆ operator!=()
◆ operator*()
const AddressInfo & cosmos::AddressInfoIterator::operator* |
( |
| ) |
|
|
inline |
Definition at line 37 of file AddressInfoIterator.hxx.
37 {
38 if (!m_pos) {
39 cosmos_throw (RuntimeError("Attempt to dereference an invalid AddressInfoIterator"));
40 }
41
42 return *m_pos;
43 }
◆ operator++()
auto & cosmos::AddressInfoIterator::operator++ |
( |
| ) |
|
|
inline |
Definition at line 27 of file AddressInfoIterator.hxx.
27 {
28 if (!m_pos) {
29 cosmos_throw (RuntimeError("Attempt to increment past the end() AddressInfoIterator"));
30 }
31
32 m_pos = m_pos->
next();
33
34 return *this;
35 }
const AddressInfo * next() const
Returns the next entry in the list.
◆ operator==()
◆ m_pos
const AddressInfo* cosmos::AddressInfoIterator::m_pos = nullptr |
|
protected |
The documentation for this struct was generated from the following file: