function Unix.connect
Connect to the Unix-domain socket at
path, within timeout_ms; None waits as long as the OS does. A missing socket raises std.io.Error with kind == "not_found".
function Unix.listen
Listen on a new Unix-domain socket at
path. A file already at path, such as one a crashed listener left behind, fails it with kind == "addr_in_use": remove it first if it is stale.
function Unix.try_connect
connect, returning an (err, stream) pair instead of raising a std.io.Error.
function Unix.try_listen
listen, returning an (err, listener) pair instead of raising a std.io.Error.
