mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
12 lines
359 B
Rust
12 lines
359 B
Rust
//! 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};
|