libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixListenSocket.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/ListenSocket.hxx>
5#include <cosmos/net/UnixConnection.hxx>
6#include <cosmos/net/UnixOptions.hxx>
7
8namespace cosmos {
9
11
16class COSMOS_API UnixListenSocket :
17 public ListenSocket {
18public: // types
19
21
22public: // functions
23
24 explicit UnixListenSocket(const SocketType type,
25 const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC});
26
27 auto unixOptions() {
28 return UnixOptions{m_fd};
29 }
30
31 auto unixOptions() const {
32 return UnixOptions{m_fd};
33 }
34
37 Socket::getSockName(addr);
38 }
39
40 using Socket::listen;
41
42 void bind(const UnixAddress &addr) {
43 return Socket::bind(addr);
44 }
45
46 UnixConnection accept(UnixAddress *addr = nullptr) {
47 auto fd = Socket::accept(addr);
48 return UnixConnection{fd};
49 }
50};
51
54 public UnixListenSocket {
55public: // types
56
57 static inline constexpr auto TYPE = SocketType::STREAM;
58
59public: // functions
60
61 explicit UnixStreamListenSocket(const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC}) :
62 UnixListenSocket{TYPE, flags} {}
63};
64
67 public UnixListenSocket {
68public: // types
69
70 static inline constexpr auto TYPE = SocketType::SEQPACKET;
71
72public: // functions
73
74 explicit UnixSeqPacketListenSocket(const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC}) :
75 UnixListenSocket{TYPE, flags} {}
76};
77
78} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Base class for connection based listening-only sockets.
Address type for local UNIX domain sockets.
An active UNIX domain socket connection.
Implementation of a UNIX domain socket listener.
void getSockName(UnixAddress &addr)
Returns the current address that the socket is bound to, if any.
UnixSocket level option setter/getter helper.
Implementation of a UNIX domain socket listener of SocketType::SEQPACKET.
Implementation of a UNIX domain socket listener of SocketType::STREAM.
SocketType
A socket's type setting.
Definition types.hxx:52