4#include <cosmos/net/UnixConnection.hxx>
5#include <cosmos/net/UnixOptions.hxx>
31 auto unixOptions()
const {
37 Socket::getSockName(addr);
51 return Socket::bind(addr);
71 Socket::connect(addr);
80 using StreamIO::readAll;
81 using StreamIO::write;
82 using StreamIO::writeAll;
90 static inline constexpr auto TYPE = SocketType::STREAM;
103 static inline constexpr auto TYPE = SocketType::SEQPACKET;
A typesafe bit mask representation using class enums.
Base class for Socket types with ownership of a FileDescriptor.
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.