mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-24 00:00:11 +02:00
Also bumps the following sub-crates: * tokio-fs (0.1.4) * tokio-io (0.1.10) * tokio-signal (0.2.6) * tokio-threadpool (0.1.8) * tokio-uds (0.2.3)
35 lines
772 B
Rust
35 lines
772 B
Rust
#![cfg(unix)]
|
|
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.3")]
|
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
|
|
|
//! 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;
|
|
extern crate log;
|
|
extern crate mio;
|
|
extern crate mio_uds;
|
|
extern crate tokio_io;
|
|
extern crate tokio_reactor;
|
|
|
|
mod datagram;
|
|
mod incoming;
|
|
mod listener;
|
|
mod recv_dgram;
|
|
mod send_dgram;
|
|
mod stream;
|
|
mod ucred;
|
|
|
|
pub use datagram::UnixDatagram;
|
|
pub use incoming::Incoming;
|
|
pub use listener::UnixListener;
|
|
pub use recv_dgram::RecvDgram;
|
|
pub use send_dgram::SendDgram;
|
|
pub use stream::{UnixStream, ConnectFuture};
|
|
pub use ucred::UCred;
|