4#include <cosmos/net/IPAddress.hxx>
5#include <cosmos/net/IPSocket.hxx>
6#include <cosmos/net/TCPConnection.hxx>
7#include <cosmos/net/TCPOptions.hxx>
25template <SocketFamily FAMILY>
32 static inline constexpr auto TYPE = SocketType::STREAM;
44 auto tcpOptions()
const {
58 void bind(
const IPAddress &addr) {
87using TCP4ClientSocket = TCPClientSocketT<SocketFamily::INET>;
88using TCP6ClientSocket = TCPClientSocketT<SocketFamily::INET6>;
A typesafe bit mask representation using class enums.
void reset()
Invalidates the stored file descriptor.
Base class for IPv4 or IPv6 based sockets.
void connect(const SocketAddress &addr)
Establish a new connection using the given destination address.
void bind(const SocketAddress &addr)
Bind the socket to the given local address.
Template class of IPv4 and IPv6 based client side TCP connection mode sockets.
void bind(const IPAddress &addr)
Bind to the given IP address.
TCPConnectionT< FAMILY > connect(const IPAddress &addr)
Connect to the given IP address.
Template for an active IPv4 and IPv6 based TCP connection.
TCP level socket option setter/getter helper.