Expand description
Unix Domain Sockets for Tokio.
Note: This crate is deprecated in tokio 0.2.x and has been moved into
tokio::net
behind theuds
feature flag.
This crate provides APIs for using Unix Domain Sockets with Tokio.
Structsยง
- Future returned by
UnixStream::connect
which will resolve to aUnixStream
when the stream is connected. - Stream of listeners
- A future for receiving datagrams from a Unix datagram socket.
- A future for writing a buffer to a Unix datagram socket.
- Credentials of a process
- An I/O object representing a Unix datagram socket.
- A unified
Stream
andSink
interface to an underlyingUnixDatagram
, using theEncoder
andDecoder
traits to encode and decode frames. - A Unix socket which can accept connections from other Unix sockets.
- A structure representing a connected Unix socket.