4#include <netinet/udp.h>
7#include <cosmos/net/SockOptBase.hxx>
12template <SocketFamily family>
18 template <SocketFamily family>
32 setBoolOption(
OptName{UDP_CORK}, on_off);
61 setIntOption(
OptName{UDP_SEGMENT},
static_cast<int>(segment_size));
76 setBoolOption(
OptName{UDP_GRO}, on_off);
81 using SockOptBase::SockOptBase;
Base class for Socket option helpers for different OptLevels.
UDP level socket option setter/getter helper.
void setReceiveOffload(const bool on_off)
Configure GRO (receive) offload on this socket.
void setCork(const bool on_off)
Accumulate output data in kernel until the option is disabled again.
void setSendOffload(const uint16_t segment_size)
Configure segmentation (send) offload on this socket using the given segment_size in bytes.
Template class for IPv4 and IPv6 based UDP datagram sockets.
OptName
Representation of socket option names.