[−][src]Struct tokio::net::UnixListener
A Unix socket which can accept connections from other Unix sockets.
You can accept a new connection by using the accept
method.
A UnixListener
can be turned into a Stream
with UnixListenerStream
.
Errors
Note that accepting a connection can lead to various errors and not all of them are necessarily fatal ‒ for example having too many open file descriptors or the other side closing the connection while it waits in an accept queue. These would terminate the stream if not handled in any way.
Examples
use tokio::net::UnixListener; #[tokio::main] async fn main() { let listener = UnixListener::bind("/path/to/the/socket").unwrap(); loop { match listener.accept().await { Ok((stream, _addr)) => { println!("new client!"); } Err(e) => { /* connection failed */ } } } }
Implementations
impl UnixListener
[src]
pub fn bind<P>(path: P) -> Result<UnixListener> where
P: AsRef<Path>,
[src]
P: AsRef<Path>,
Creates a new UnixListener
bound to the specified path.
Panics
This function panics if thread-local runtime is not set.
The runtime is usually set implicitly when this function is called
from a future driven by a tokio runtime, otherwise runtime can be set
explicitly with Runtime::enter
function.
pub fn from_std(listener: UnixListener) -> Result<UnixListener>
[src]
Creates new UnixListener
from a std::os::unix::net::UnixListener
.
This function is intended to be used to wrap a UnixListener from the standard library in the Tokio equivalent. The conversion assumes nothing about the underlying listener; it is left up to the user to set it in non-blocking mode.
Panics
This function panics if thread-local runtime is not set.
The runtime is usually set implicitly when this function is called
from a future driven by a tokio runtime, otherwise runtime can be set
explicitly with Runtime::enter
function.
pub fn into_std(self) -> Result<UnixListener>
[src]
Turn a tokio::net::UnixListener
into a std::os::unix::net::UnixListener
.
The returned std::os::unix::net::UnixListener
will have nonblocking mode
set as true
. Use set_nonblocking
to change the blocking mode if needed.
Examples
use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { let tokio_listener = tokio::net::UnixListener::bind("127.0.0.1:0")?; let std_listener = tokio_listener.into_std()?; std_listener.set_nonblocking(false)?; Ok(()) }
pub fn local_addr(&self) -> Result<SocketAddr>
[src]
Returns the local socket address of this listener.
pub fn take_error(&self) -> Result<Option<Error>>
[src]
Returns the value of the SO_ERROR
option.
pub async fn accept(&self) -> Result<(UnixStream, SocketAddr)>
[src]
Accepts a new incoming connection to this listener.
pub fn poll_accept(
&self,
cx: &mut Context<'_>
) -> Poll<Result<(UnixStream, SocketAddr)>>
[src]
&self,
cx: &mut Context<'_>
) -> Poll<Result<(UnixStream, SocketAddr)>>
Polls to accept a new incoming connection to this listener.
If there is no connection to accept, Poll::Pending
is returned and the
current task will be notified by a waker. Note that on multiple calls
to poll_accept
, only the Waker
from the Context
passed to the most
recent call is scheduled to receive a wakeup.
Trait Implementations
impl AsRawFd for UnixListener
[src]
impl Debug for UnixListener
[src]
impl TryFrom<UnixListener> for UnixListener
[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(stream: UnixListener) -> Result<Self>
[src]
Consumes stream, returning the tokio I/O object.
This is equivalent to
UnixListener::from_std(stream)
.
Auto Trait Implementations
impl !RefUnwindSafe for UnixListener
[src]
impl Send for UnixListener
[src]
impl Sync for UnixListener
[src]
impl Unpin for UnixListener
[src]
impl !UnwindSafe for UnixListener
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,