4#include <cosmos/net/ListenSocket.hxx>
5#include <cosmos/net/UnixConnection.hxx>
6#include <cosmos/net/UnixOptions.hxx>
31 auto unixOptions()
const {
37 Socket::getSockName(addr);
43 return Socket::bind(addr);
46 UnixConnection accept(UnixAddress *addr =
nullptr) {
47 auto fd = Socket::accept(addr);
48 return UnixConnection{fd};
57 static inline constexpr auto TYPE = SocketType::STREAM;
70 static inline constexpr auto TYPE = SocketType::SEQPACKET;
A typesafe bit mask representation using class enums.
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.