libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TCPOoptions.cxx
1// cosmos
2#include <cosmos/net/TCPOptions.hxx>
4
5namespace cosmos {
6
8 return getsockopt<TCPInfo>(m_sock, M_LEVEL, OptName{TCP_INFO});
9}
10
11void TCPOptions::setUserTimeout(const std::chrono::milliseconds timeout) {
12 setsockopt(m_sock, M_LEVEL, OptName{TCP_USER_TIMEOUT}, static_cast<unsigned int>(timeout.count()));
13}
14
15}; // end ns
static constexpr OptLevel M_LEVEL
void setUserTimeout(const std::chrono::milliseconds timeout)
Maximum time that the TCP protocol is allowed to be stuck without terminating the connection.
TCPInfo getInfo() const
Returns a structure containing detailed state about the TCP socket.
OptName
Representation of socket option names.
Definition types.hxx:103
This structure provides detailed information about TCP socket state.
Definition tcp.hxx:10