Struct mio_uds::UnixListener[][src]

pub struct UnixListener { /* fields omitted */ }

A structure representing a Unix domain socket server.

This listener can be used to accept new streams connected to a remote endpoint, through which the read and write methods can be used to communicate.

Methods

impl UnixListener
[src]

Creates a new UnixListener bound to the specified socket.

Consumes a standard library UnixListener and returns a wrapped UnixListener compatible with mio.

The returned stream is moved into nonblocking mode and is otherwise ready to get associated with an event loop.

Accepts a new incoming connection to this listener.

When established, the corresponding UnixStream and the remote peer's address will be returned as Ok(Some(...)). If there is no connection waiting to be accepted, then Ok(None) is returned.

If an error happens while accepting, Err is returned.

Accepts a new incoming connection to this listener.

This method is the same as accept, except that it returns a UDP socket in blocking mode which isn't bound to a mio type. This can later be converted to a mio type, if necessary.

If an error happens while accepting, Err is returned.

Creates a new independently owned handle to the underlying socket.

The returned UnixListener is a reference to the same socket that this object references. Both handles can be used to accept incoming connections and options set on one listener will affect the other.

Returns the local socket address of this listener.

Returns the value of the SO_ERROR option.

Trait Implementations

impl Debug for UnixListener
[src]

Formats the value using the given formatter. Read more

impl Evented for UnixListener
[src]

Register self with the given Poll instance. Read more

Re-register self with the given Poll instance. Read more

Deregister self from the given Poll instance Read more

impl AsRawFd for UnixListener
[src]

Extracts the raw file descriptor. Read more

impl IntoRawFd for UnixListener
[src]

Consumes this object, returning the raw underlying file descriptor. Read more

impl FromRawFd for UnixListener
[src]

Constructs a new instance of Self from the given raw file descriptor. Read more

Auto Trait Implementations