2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/UnixAddress.hxx>
10 cosmos_throw(
RuntimeError(
"UNIX address path too long") );
13 char *ptr = m_addr.sun_path;
20 std::memcpy(ptr, path.data(), path.size());
23 ptr[path.size()] =
'\0';
30 if (new_length < BASE_SIZE) {
31 m_addr.sun_family = to_integral(
family());
36 new_length -= BASE_SIZE;
Strong template type to wrap boolean values in a named type.
Exception type for generic runtime errors.
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
std::string_view getPath() const
Returns the currently set path.
bool isUnnamed() const
Returns whether this address is currently unnamed (empty).
void update(size_t new_length) override
Update the address structure after it has been filled in by the kernel.
size_t maxPathLen() const
Maximum path length that can be stored in a UnixAddress structure.
bool isAbstract() const
Returns whether currently an abstract path is contained.
void setPath(const std::string_view path, const Abstract abstract=Abstract{false})
Sets a new path for the address.
size_t m_path_len
used bytes in m_addr.sun_path excluding terminator
std::string label() const
Returns a human readable label for the contained path.