Files
tokio/tokio-uds/src/lib.rs
T

39 lines
857 B
Rust
Raw Normal View History

2018-10-23 22:00:49 -07:00
#![cfg(unix)]
2019-01-06 23:25:55 -08:00
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.5")]
2018-10-23 22:00:49 -07:00
#![deny(missing_docs, warnings, missing_debug_implementations)]
2018-05-14 14:48:32 -07:00
//! Unix Domain Sockets for Tokio.
//!
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
extern crate bytes;
#[macro_use]
extern crate futures;
extern crate iovec;
extern crate libc;
2018-11-20 11:19:34 -06:00
#[macro_use]
2018-05-14 14:48:32 -07:00
extern crate log;
extern crate mio;
extern crate mio_uds;
2018-11-20 11:19:34 -06:00
extern crate tokio_codec;
2018-05-14 14:48:32 -07:00
extern crate tokio_io;
extern crate tokio_reactor;
mod datagram;
2018-11-20 11:19:34 -06:00
mod frame;
2018-05-14 14:48:32 -07:00
mod incoming;
mod listener;
mod recv_dgram;
mod send_dgram;
mod stream;
mod ucred;
pub use datagram::UnixDatagram;
2018-11-20 11:19:34 -06:00
pub use frame::UnixDatagramFramed;
2018-05-14 14:48:32 -07:00
pub use incoming::Incoming;
pub use listener::UnixListener;
pub use recv_dgram::RecvDgram;
pub use send_dgram::SendDgram;
2019-02-21 11:56:15 -08:00
pub use stream::{ConnectFuture, UnixStream};
2018-05-14 14:48:32 -07:00
pub use ucred::UCred;