summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/unix/mod.rs
blob: f063b74b2f605f7bd211ed1b9379e3005dcd9b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Unix domain socket utility types

pub(crate) mod datagram;
pub use datagram::{OwnedRecvHalf, OwnedSendHalf, ReuniteError};

mod incoming;
pub use incoming::Incoming;

pub(crate) mod listener;
pub(crate) use listener::UnixListener;

mod split;
pub use split::{ReadHalf, WriteHalf};

pub(crate) mod stream;
pub(crate) use stream::UnixStream;

mod ucred;
pub use ucred::UCred;