libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TCPClientSocket.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/IPAddress.hxx>
5#include <cosmos/net/IPSocket.hxx>
6#include <cosmos/net/TCPConnection.hxx>
7#include <cosmos/net/TCPOptions.hxx>
8
9namespace cosmos {
10
12
25template <SocketFamily FAMILY>
27 public IPSocketT<FAMILY> {
28public: // types
29
30 using IPAddress = typename FamilyTraits<FAMILY>::Address;
32 static inline constexpr auto TYPE = SocketType::STREAM;
33
34public: // functions
35
36 explicit TCPClientSocketT(const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC}) :
37 IPSocketT<FAMILY>{TYPE, flags} {
38 }
39
40 auto tcpOptions() {
41 return TCPOptions{this->m_fd};
42 }
43
44 auto tcpOptions() const {
45 return TCPOptions{this->m_fd};
46 }
47
49
58 void bind(const IPAddress &addr) {
59 return Socket::bind(addr);
60 }
61
63
79 TCPConnectionT<FAMILY> connect(const IPAddress &addr) {
80 Socket::connect(addr);
81 auto ret = TCPConnectionT<FAMILY>{this->m_fd};
82 this->m_fd.reset();
83 return ret;
84 }
85};
86
87using TCP4ClientSocket = TCPClientSocketT<SocketFamily::INET>;
88using TCP6ClientSocket = TCPClientSocketT<SocketFamily::INET6>;
89
90} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
void reset()
Invalidates the stored file descriptor.
Base class for IPv4 or IPv6 based sockets.
Definition IPSocket.hxx:21
void connect(const SocketAddress &addr)
Establish a new connection using the given destination address.
Definition Socket.cxx:33
void bind(const SocketAddress &addr)
Bind the socket to the given local address.
Definition Socket.cxx:27
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.