7#include <cosmos/net/SockOptBase.hxx>
8#include <cosmos/net/tcp.hxx>
13template <SocketFamily family>
20 template <SocketFamily family>
23 template <SocketFamily family>
26 template <SocketFamily family>
39 setStringOption(
OptName{TCP_CONGESTION}, name);
50 setBoolOption(
OptName{TCP_CORK}, on_off);
75 setIntOption(
OptName{TCP_DEFER_ACCEPT}, max_wait.count());
84 setIntOption(
OptName{TCP_KEEPCNT}, count);
95 setIntOption(
OptName{TCP_KEEPIDLE}, idle_time.count());
104 setIntOption(
OptName{TCP_KEEPINTVL}, interval.count());
115 setIntOption(
OptName{TCP_LINGER2}, timeout.count());
129 setIntOption(
OptName{TCP_MAXSEG}, bytes);
145 setBoolOption(
OptName{TCP_NODELAY}, on_off);
156 setBoolOption(
OptName{TCP_QUICKACK}, on_off);
164 setIntOption(
OptName{TCP_SYNCNT}, count);
189 void setUserTimeout(
const std::chrono::milliseconds timeout);
201 setIntOption(
OptName{TCP_WINDOW_CLAMP}, bytes);
215 setIntOption(
OptName{TCP_FASTOPEN}, max_pending_syns);
241 setBoolOption(
OptName{TCP_FASTOPEN_CONNECT}, on_off);
246 using SockOptBase::SockOptBase;
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.
Wrapper type around a C-style string for use with system APIs.
This structure provides detailed information about TCP socket state.