mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
19 lines
474 B
Rust
19 lines
474 B
Rust
//! Unix domain socket helpers.
|
|
|
|
use super::Listener;
|
|
use std::io::Result;
|
|
use std::task::{Context, Poll};
|
|
|
|
impl Listener for tokio::net::UnixListener {
|
|
type Io = tokio::net::UnixStream;
|
|
type Addr = tokio::net::unix::SocketAddr;
|
|
|
|
fn poll_accept(&mut self, cx: &mut Context<'_>) -> Poll<Result<(Self::Io, Self::Addr)>> {
|
|
Self::poll_accept(self, cx)
|
|
}
|
|
|
|
fn local_addr(&self) -> Result<Self::Addr> {
|
|
self.local_addr().map(Into::into)
|
|
}
|
|
}
|