tokio_core/net/mod.rs
1//! TCP/UDP bindings for `tokio-core`
2//!
3//! This module contains the TCP/UDP networking types, similar to the standard
4//! library, which can be used to implement networking protocols.
5
6mod tcp;
7mod udp;
8
9pub use self::tcp::{TcpStream, TcpStreamNew};
10pub use self::tcp::{TcpListener, Incoming};
11pub use self::udp::{UdpSocket, UdpCodec, UdpFramed, SendDgram, RecvDgram};