libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TCPOptions.hxx
1#pragma once
2
3// C++
4#include <chrono>
5
6// cosmos
7#include <cosmos/net/SockOptBase.hxx>
8#include <cosmos/net/tcp.hxx>
9
10namespace cosmos {
11
12// fwd. decl. for friend declarations below
13template <SocketFamily family>
15
17class COSMOS_API TCPOptions :
18 public SockOptBase<OptLevel::TCP> {
19
20 template <SocketFamily family>
21 friend class TCPListenSocketT;
22
23 template <SocketFamily family>
24 friend class TCPClientSocketT;
25
26 template <SocketFamily family>
27 friend class TCPConnectionT;
28
29public: // functions
30
32
39 setStringOption(OptName{TCP_CONGESTION}, name);
40 }
41
43
49 void setCork(const bool on_off) {
50 setBoolOption(OptName{TCP_CORK}, on_off);
51 }
52
53 void pushCork() {
54 setCork(true);
55 }
56
57 void popCork() {
58 setCork(false);
59 }
60
62
74 void setDeferAccept(const std::chrono::seconds max_wait) {
75 setIntOption(OptName{TCP_DEFER_ACCEPT}, max_wait.count());
76 }
77
78
80 TCPInfo getInfo() const;
81
83 void setKeepaliveCount(const size_t count) {
84 setIntOption(OptName{TCP_KEEPCNT}, count);
85 }
86
88
94 void setKeepaliveIdleTime(const std::chrono::seconds idle_time) {
95 setIntOption(OptName{TCP_KEEPIDLE}, idle_time.count());
96 }
97
99
103 void setKeepaliveInterval(const std::chrono::seconds interval) {
104 setIntOption(OptName{TCP_KEEPINTVL}, interval.count());
105 }
106
108
114 void setFinLinger(const std::chrono::seconds timeout) {
115 setIntOption(OptName{TCP_LINGER2}, timeout.count());
116 }
117
119
128 void setMaxSegmentSize(const size_t bytes) {
129 setIntOption(OptName{TCP_MAXSEG}, bytes);
130 }
131
133
144 void setNoDelay(const bool on_off) {
145 setBoolOption(OptName{TCP_NODELAY}, on_off);
146 }
147
149
155 void setQuickACK(const bool on_off) {
156 setBoolOption(OptName{TCP_QUICKACK}, on_off);
157 }
158
160
163 void setSynCount(const size_t count) {
164 setIntOption(OptName{TCP_SYNCNT}, count);
165 }
166
168
189 void setUserTimeout(const std::chrono::milliseconds timeout);
190
192
200 void setWindowClamp(const size_t bytes) {
201 setIntOption(OptName{TCP_WINDOW_CLAMP}, bytes);
202 }
203
205
214 void setFastOpen(const size_t max_pending_syns) {
215 setIntOption(OptName{TCP_FASTOPEN}, max_pending_syns);
216 }
217
219
240 void setFastOpenConnect(const bool on_off) {
241 setBoolOption(OptName{TCP_FASTOPEN_CONNECT}, on_off);
242 }
243
244protected: // functions
245
246 using SockOptBase::SockOptBase;
247};
248
249}; // end ns
Base class for Socket option helpers for different OptLevels.
Template class of IPv4 and IPv6 based client side TCP connection mode sockets.
Template for an active IPv4 and IPv6 based TCP connection.
Implementation of TCP listener sockets based on IPv4 and IPv6.
TCP level socket option setter/getter helper.
void setMaxSegmentSize(const size_t bytes)
Sets the maximum segment size for outgoing TCP packets.
void setKeepaliveInterval(const std::chrono::seconds interval)
Sets the time span between individual keepalive probes.
void setDeferAccept(const std::chrono::seconds max_wait)
Allow a listener to be awakened only when data arrives on the socket.
void setWindowClamp(const size_t bytes)
Bound the size of the advertised transmission window.
void setCork(const bool on_off)
Don't send out partial frames.
void setKeepaliveIdleTime(const std::chrono::seconds idle_time)
Sets the amount of connection idle time before the keepalive algorithm sets in.
void setSynCount(const size_t count)
Set the number of SYN retransmits before aborting a connection attempt.
void setKeepaliveCount(const size_t count)
Sets the maximum number of keepalive probes before dropping the connection.
void setFastOpenConnect(const bool on_off)
Enable TCP fast open for the connect() system call.
void setCongestionControl(const SysString name)
Select the TCP congestion control algorithm on a per-socket basis.
void setFinLinger(const std::chrono::seconds timeout)
Sets the timeout in seconds for orphaned sockets to stay in FIN_WAIT2 state.
void setQuickACK(const bool on_off)
Enable or disable quick ACK mode.
void setFastOpen(const size_t max_pending_syns)
Enable TCP fast open (RFC 7413) on this socket.
void setNoDelay(const bool on_off)
Disable the Nagle algorithm (accumulating data before sending).
OptName
Representation of socket option names.
Definition types.hxx:103
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33
This structure provides detailed information about TCP socket state.
Definition tcp.hxx:10