libcosmos
Linux C++ System Programming Library
|
Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::RECVERR. More...
#include <SocketError.hxx>
Public Types | |
enum class | Origin : uint8_t { NONE = SO_EE_ORIGIN_NONE , LOCAL = SO_EE_ORIGIN_LOCAL , ICMP = SO_EE_ORIGIN_ICMP , ICMP6 = SO_EE_ORIGIN_ICMP6 , TXSTATUS = SO_EE_ORIGIN_TXSTATUS , ZEROCOPY = SO_EE_ORIGIN_ZEROCOPY , TXTIME = SO_EE_ORIGIN_TXTIME } |
This defines where the extended error originated. More... | |
enum class | ZeroCopyCode : uint8_t { ZEROCOPY_COPIED = SO_EE_CODE_ZEROCOPY_COPIED } |
Code definitions for Origin::ZEROCOPY. More... | |
enum class | TxTimeCode : uint8_t { TXTIME_INVALID_PARAM = SO_EE_CODE_TXTIME_INVALID_PARAM , TXTIME_MISSED = SO_EE_CODE_TXTIME_MISSED } |
Code definitions for Origin::TXTIME. More... | |
using | IPAddress = typename FamilyTraits<FAMILY>::Address |
Public Member Functions | |
Origin | origin () const |
The origin defines how the rest of the error data is interpreted. | |
Errno | errnum () const |
The error code is always available, but may be Errno::NO_ERROR. | |
std::optional< uint32_t > | discoveredMTU () const |
If errnum() is Errno::MSG_TOO_LARGE then this returns the currently known MTU. | |
std::optional< ZeroCopyCode > | zeroCopyCode () const |
std::optional< TxTimeCode > | txTimeCode () const |
std::optional< std::pair< uint32_t, uint32_t > > | zeroCopyRange () const |
Return the copied ranges for zerocopy status reports. | |
bool | originIsICMP () const |
std::optional< uint8_t > | icmpType () const |
std::optional< uint8_t > | icmpCode () const |
SocketFamily | offenderAddressFamily () const |
bool | hasOffenderAddress () const |
Check whether the offender IP address is available. | |
std::optional< IPAddress > | offenderAddress () const |
Protected Member Functions | |
const struct sockaddr * | offenderAddr () const |
Wrapper for socket extended errors ancillary message of types IP4Message::RECVERR and IP6Message::RECVERR.
This data structure is passed for IP based sockets if the IP4Options::setReceiveErrors() or IP6Options::setReceiveErrors() option is enabled. Extended error reporting generally only works for SocketType::DGRAM sockets. All errors on the socket will be queued in a separate error message queue and these errors can be received using Socket::receiveMessage() with the MessageFlag::ERRQUEUE set.
Various kinds of data can be part of this structure. The exact interpretation depends upon the Origin and error() code. For this reason various functions only return optional values.
Definition at line 35 of file SocketError.hxx.
using cosmos::SocketErrorT< FAMILY >::IPAddress = typename FamilyTraits<FAMILY>::Address |
Definition at line 39 of file SocketError.hxx.
|
strong |
This defines where the extended error originated.
Definition at line 42 of file SocketError.hxx.
|
strong |
Code definitions for Origin::TXTIME.
Definition at line 63 of file SocketError.hxx.
|
strong |
Code definitions for Origin::ZEROCOPY.
Enumerator | |
---|---|
ZEROCOPY_COPIED | No zerocopy was performed, the kernel performed a copy. |
Definition at line 57 of file SocketError.hxx.
|
inline |
If errnum() is Errno::MSG_TOO_LARGE then this returns the currently known MTU.
Definition at line 82 of file SocketError.hxx.
|
inline |
The error code is always available, but may be Errno::NO_ERROR.
Definition at line 76 of file SocketError.hxx.
|
inline |
Check whether the offender IP address is available.
If available then the kernel also provides the IP address of the node that caused the error. offenderAddress() allows to access the address, if applicable.
Definition at line 149 of file SocketError.hxx.
|
inline |
Definition at line 131 of file SocketError.hxx.
|
inline |
Definition at line 123 of file SocketError.hxx.
|
inlineprotected |
Definition at line 163 of file SocketError.hxx.
|
inline |
Definition at line 153 of file SocketError.hxx.
|
inline |
Definition at line 139 of file SocketError.hxx.
|
inline |
The origin defines how the rest of the error data is interpreted.
Definition at line 71 of file SocketError.hxx.
|
inline |
Definition at line 119 of file SocketError.hxx.
|
inline |
Definition at line 98 of file SocketError.hxx.
|
inline |
Definition at line 90 of file SocketError.hxx.
|
inline |
Return the copied ranges for zerocopy status reports.
If this is a zerocopy status report from the kernel then this returns the range of transmissions that have been completed.
Definition at line 111 of file SocketError.hxx.