libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixClientSocket.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/UnixConnection.hxx>
5#include <cosmos/net/UnixOptions.hxx>
6
7namespace cosmos {
8
10
17class COSMOS_API UnixClientSocket :
18 public Socket {
19public: // types
20
22
23public: // functions
24
25 explicit UnixClientSocket(const SocketType type, const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC});
26
27 auto unixOptions() {
28 return UnixOptions{this->m_fd};
29 }
30
31 auto unixOptions() const {
32 return UnixOptions{this->m_fd};
33 }
34
37 Socket::getSockName(addr);
38 }
39
41
50 void bind(const UnixAddress &addr) {
51 return Socket::bind(addr);
52 }
53
55
71 Socket::connect(addr);
72 auto ret = UnixConnection{this->m_fd};
73 this->m_fd.reset();
74 return ret;
75 }
76
77protected:
78
79 using StreamIO::read;
80 using StreamIO::readAll;
81 using StreamIO::write;
82 using StreamIO::writeAll;
83};
84
87 public UnixClientSocket {
88public: // types
89
90 static inline constexpr auto TYPE = SocketType::STREAM;
91
92public: // functions
93
94 explicit UnixStreamClientSocket(const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC}) :
95 UnixClientSocket{TYPE, flags} {}
96};
97
100 public UnixClientSocket {
101public: // types
102
103 static inline constexpr auto TYPE = SocketType::SEQPACKET;
104
105public: // functions
106
107 explicit UnixSeqPacketClientSocket(const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC}) :
108 UnixClientSocket{TYPE, flags} {}
109};
110
111} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Base class for Socket types with ownership of a FileDescriptor.
Definition Socket.hxx:38
Address type for local UNIX domain sockets.
Client side socket for connection mode UNIX domain sockets.
void bind(const UnixAddress &addr)
Bind to the given UNIX address.
UnixConnection connect(const UnixAddress &addr)
Connect to the given UNIX address.
void getSockName(UnixAddress &addr)
Returns the current address that the socket is bound to, if any.
An active UNIX domain socket connection.
UnixSocket level option setter/getter helper.
Implementation of a UNIX domain client socket of SocketType::SEQPACKET.
Implementation of a UNIX domain client socket of SocketType::STREAM.
SocketType
A socket's type setting.
Definition types.hxx:52