ListenResult.OK on success, or an error variant indicating the failure reason.UnixListener.listen
ListenResult listen(ref EventLoop loop, scope const(char)[] path) @trustedStart listening on the requested Unix domain socket path.
This will create the socket file at the specified path. If a socket file already exists at the path, it will be unlinked first.
Parameters
loop | Event loop to register with. |
path | Filesystem path to bind the socket to. |