libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UDPOptions.hxx
1#pragma once
2
3// Linux
4#include <netinet/udp.h>
5
6// cosmos
7#include <cosmos/net/SockOptBase.hxx>
8
9namespace cosmos {
10
11// fwd. decl. for friend declarations below
12template <SocketFamily family>
13class UDPSocketT;
14
16class COSMOS_API UDPOptions :
17 public SockOptBase<OptLevel::UDP> {
18 template <SocketFamily family>
19 friend class UDPSocketT;
20public: // functions
21
23
31 void setCork(const bool on_off) {
32 setBoolOption(OptName{UDP_CORK}, on_off);
33 }
34
35 void pushCork() {
36 setCork(true);
37 }
38
39 void popCork() {
40 setCork(false);
41 }
42
44
60 void setSendOffload(const uint16_t segment_size) {
61 setIntOption(OptName{UDP_SEGMENT}, static_cast<int>(segment_size));
62 }
63
65
75 void setReceiveOffload(const bool on_off) {
76 setBoolOption(OptName{UDP_GRO}, on_off);
77 }
78
79protected: // functions
80
81 using SockOptBase::SockOptBase;
82};
83
84}; // end ns
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.
Definition UDPSocket.hxx:25
OptName
Representation of socket option names.
Definition types.hxx:103