summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/udp/mod.rs
blob: b4d3ea4696e660b893fc2c5d671abc7508584dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 use socket::UdpSocket;

mod split;
pub use split::{RecvHalf, SendHalf, ReuniteError};