futures_net/driver/sys/net/
mod.rs

1//! Networking primitives
2//!
3//! The types provided in this module are non-blocking by default and are
4//! designed to for Linux.
5
6mod tcp;
7mod udp;
8mod uds;
9
10pub use self::tcp::{TcpListener, TcpStream};
11pub use self::udp::UdpSocket;
12pub use self::uds::datagram::UnixDatagram;
13pub use self::uds::listener::UnixListener;
14pub use self::uds::stream::UnixStream;