7#include <cosmos/net/Socket.hxx>
8#include <cosmos/net/UnixAddress.hxx>
9#include <cosmos/net/UnixOptions.hxx>
22 static inline constexpr auto TYPE = SocketType::DGRAM;
27 Socket{SocketFamily::UNIX, TYPE, flags} {
37 auto unixOptions()
const {
69 std::pair<size_t, std::optional<UnixAddress>> receiveFrom(
74 return {len, filled ? std::optional<UnixAddress>{addr} : std::nullopt};
77 auto sendTo(
const void *buf,
size_t length,
const UnixAddress &addr,
const MessageFlags flags = MessageFlags{}) {
81 auto sendTo(
const std::string_view data,
const UnixAddress &addr,
const MessageFlags flags = MessageFlags{}) {
82 return sendTo(data.data(), data.size(), addr, flags);
88 void sendMessage(SendMessageHeader &header) {
92 void sendMessageTo(SendMessageHeader &header,
const UnixAddress &addr) {
96 void receiveMessage(ReceiveMessageHeader &header) {
100 std::optional<UnixAddress> receiveMessageFrom(ReceiveMessageHeader &header) {
104 return filled ? std::optional<UnixAddress>{addr} : std::nullopt;
A typesafe bit mask representation using class enums.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Thin Wrapper around OS file descriptors.
Base class for Socket types with ownership of a FileDescriptor.
void sendMessage(SendMessageHeader &header, const SocketAddress *addr=nullptr)
Sends a message over the socket using extended SendMessageHeader data.
std::pair< size_t, AddressFilledIn > receiveFrom(void *buf, size_t length, SocketAddress &addr, const MessageFlags flags=MessageFlags{})
Receive a packet, filling in the sender's address.
void connect(const SocketAddress &addr)
Establish a new connection using the given destination address.
void bind(const SocketAddress &addr)
Bind the socket to the given local address.
AddressFilledIn receiveMessage(ReceiveMessageHeader &header, SocketAddress *addr=nullptr)
Receives a message from the socket using extended ReceiveMessageHeader data.
size_t sendTo(const void *buf, size_t length, const SocketAddress &addr, const MessageFlags flags=MessageFlags{})
Send a packet to a specific destination address.
size_t receive(void *buf, size_t length, const MessageFlags flags=MessageFlags{})
Receive data from the socket, using specific receive flags.
size_t send(const void *buf, size_t length, const MessageFlags flags=MessageFlags{})
Send the given data over the socket, using specific send flags.
Address type for local UNIX domain sockets.
Implementation of a UNIX domain datagram socket.
void connect(const UnixAddress &addr)
Connect to the given UNIX address.
void bind(const UnixAddress &addr)
Bind to the given UNIX address.
UnixSocket level option setter/getter helper.