2#include <cosmos/net/IPOptions.hxx>
8#ifndef IP_LOCAL_PORT_RANGE
9# define IP_LOCAL_PORT_RANGE 51
13 const uint32_t setting = (
static_cast<uint32_t
>(upper_bound) << 16) |
14 static_cast<uint32_t
>(lower_bound);
21 const uint16_t lower_bound =
static_cast<uint16_t
>(bounds);
22 const uint16_t upper_bound =
static_cast<uint16_t
>(bounds >> 16);
24 return std::make_pair(upper_bound, lower_bound);
ToS
IP type-of-service field values as used in setTypeOfService().
void setTypeOfService(const ToS tos)
Sets the type-of-service field that is sent with every IP packet.
std::pair< uint16_t, uint16_t > getLocalPortRange() const
Gets the currently set range of ports for automatic source port selection.
void setLocalPortRange(const uint16_t lower_bound, const uint16_t upper_bound)
Sets the range of ports on which automatic source port selection is based.
ToS getTypeOfService() const
Gets the current type-of-service field that is sent with every IP packet.
static constexpr OptLevel M_LEVEL
The option level to operate on.
FileDescriptor m_sock
The socket file descriptor to operate on.
OptName
Representation of socket option names.