libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
IPOptions.cxx
1// cosmos
2#include <cosmos/net/IPOptions.hxx>
4
5namespace cosmos {
6
7// this requires linux 6.3 headers - define it ourselves if necessary
8#ifndef IP_LOCAL_PORT_RANGE
9# define IP_LOCAL_PORT_RANGE 51
10#endif
11void IP4Options::setLocalPortRange(const uint16_t lower_bound, const uint16_t upper_bound) {
12 // the upper 16 bits are the upper_bound, the lower 16 bits the lower bound.
13 const uint32_t setting = (static_cast<uint32_t>(upper_bound) << 16) |
14 static_cast<uint32_t>(lower_bound);
15 setsockopt(m_sock, M_LEVEL, OptName{IP_LOCAL_PORT_RANGE}, setting);
16}
17
18std::pair<uint16_t, uint16_t> IP4Options::getLocalPortRange() const {
19 const auto bounds = getsockopt<uint32_t>(m_sock, M_LEVEL, OptName{IP_LOCAL_PORT_RANGE});
20
21 const uint16_t lower_bound = static_cast<uint16_t>(bounds);
22 const uint16_t upper_bound = static_cast<uint16_t>(bounds >> 16);
23
24 return std::make_pair(upper_bound, lower_bound);
25}
26
28 setsockopt(m_sock, M_LEVEL, OptName{IP_TOS}, to_integral(tos));
29}
30
32 const auto tos = getsockopt<uint8_t>(m_sock, M_LEVEL, OptName{IP_TOS});
33 return ToS{tos};
34}
35
36}; // end ns
ToS
IP type-of-service field values as used in setTypeOfService().
Definition IPOptions.hxx:63
void setTypeOfService(const ToS tos)
Sets the type-of-service field that is sent with every IP packet.
Definition IPOptions.cxx:27
std::pair< uint16_t, uint16_t > getLocalPortRange() const
Gets the currently set range of ports for automatic source port selection.
Definition IPOptions.cxx:18
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.
Definition IPOptions.cxx:11
ToS getTypeOfService() const
Gets the current type-of-service field that is sent with every IP packet.
Definition IPOptions.cxx:31
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.
Definition types.hxx:103