Files
tokio/src/net/mod.rs
T

12 lines
359 B
Rust
Raw Normal View History

2016-09-02 11:07:52 -07:00
//! TCP/UDP bindings for `tokio-core`
//!
//! This module contains the TCP/UDP networking types, similar to the standard
//! library, which can be used to implement networking protocols.
mod tcp;
mod udp;
pub use self::tcp::{TcpStream, TcpStreamNew};
pub use self::tcp::{TcpListener, TcpListenerNew, Incoming};
pub use self::udp::{UdpSocket, UdpSocketNew};