summaryrefslogtreecommitdiffstats
path: root/tokio-net/src/udp/mod.rs
blob: 45656773c25ad6eea36db15ea467a48615e1f677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! UDP bindings for `tokio`.
//!
//! This module contains the UDP networking types, similar to the standard
//! library, which can be used to implement networking protocols.
//!
//! The main struct for UDP is the [`UdpSocket`], which represents a UDP socket.
//!
//! [`UdpSocket`]: struct.UdpSocket

mod socket;
pub mod split;

pub use self::socket::UdpSocket;