uds 0.4.2

A unix domain socket crate that supports abstract addresses, fd-passing and seqpacket sockets.
Documentation
1
2
3
4
5
6
7
8
9
//! Provides support for `SEQPACKET` sockets in Tokio.
//!
//! This requires this librarys `tokio` feature to be enabled.  
//! See the README for example of how to enable it.

mod seqpacket;
pub use seqpacket::*;
mod traits;
pub use traits::*;