Expand description
Connect hyper servers and clients to Unix-domain sockets.
Most of this crate’s functionality is borrowed from hyperlocal. This crate supports async/await, while hyperlocal does not (yet).
See UnixClient and UnixConnector for examples.
Structs§
- UDS
- Newtype for
tokio::net::UnixStreamso that it can work with hyper’sClient. - Unix
Client - Converts
Uritotokio::net::UnixStream. - Unix
Connector - Wrapper around
tokio::net::UnixListenerthat works withhyperservers. - Uri
- A type which implements
Intofor hyper’shyper::Uritype targetting unix domain sockets.