Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader.
More...
#include <message_header.hxx>
Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader.
Definition at line 330 of file message_header.hxx.
◆ ControlMessageIterator() [1/2]
cosmos::ReceiveMessageHeader::ControlMessageIterator::ControlMessageIterator |
( |
| ) |
|
|
inline |
◆ ControlMessageIterator() [2/2]
cosmos::ReceiveMessageHeader::ControlMessageIterator::ControlMessageIterator |
( |
const ReceiveMessageHeader & | header | ) |
|
|
inlineexplicit |
Create an iterator pointing to the first ControlMessage of header.
If there is no ControlMessage in header
then an invalid (end) iterator is the result.
Definition at line 341 of file message_header.hxx.
341 :
342 m_pos{CMSG_FIRSTHDR(&header.m_header)},
343 m_header{&header} {
344 }
◆ operator!=()
bool cosmos::ReceiveMessageHeader::ControlMessageIterator::operator!= |
( |
const ControlMessageIterator & | other | ) |
const |
|
inline |
◆ operator*()
const ControlMessage & cosmos::ReceiveMessageHeader::ControlMessageIterator::operator* |
( |
| ) |
|
|
inline |
Access the current ControlMessage the iterator points to.
Definition at line 368 of file message_header.hxx.
368 {
369 if (!m_pos) {
370 cosmos_throw (RuntimeError("Attempt to dereference an invalid ControlMessageIterator"));
371 }
372
373 return *reinterpret_cast<const ControlMessage*>(m_pos);
374 }
◆ operator++()
auto & cosmos::ReceiveMessageHeader::ControlMessageIterator::operator++ |
( |
| ) |
|
|
inline |
Advance to the next ControlMessage, or to the end of the range.
Definition at line 347 of file message_header.hxx.
347 {
348 if (m_pos) {
349 const msghdr *hdr = m_header->rawHeader();
350 const cmsghdr *chdr = m_pos;
351 m_pos = CMSG_NXTHDR(const_cast<msghdr*>(hdr), const_cast<cmsghdr*>(chdr));
352 } else {
353 cosmos_throw (RuntimeError("Attempt to increment ControlMessageIterator past the end"));
354 }
355
356 return *this;
357 }
◆ operator==()
bool cosmos::ReceiveMessageHeader::ControlMessageIterator::operator== |
( |
const ControlMessageIterator & | other | ) |
const |
|
inline |
◆ m_header
const ReceiveMessageHeader* cosmos::ReceiveMessageHeader::ControlMessageIterator::m_header = nullptr |
|
protected |
◆ m_pos
const cmsghdr* cosmos::ReceiveMessageHeader::ControlMessageIterator::m_pos = nullptr |
|
protected |
The documentation for this class was generated from the following file: