summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/udp/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/net/udp/mod.rs')
-rw-r--r--tokio/src/net/udp/mod.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tokio/src/net/udp/mod.rs b/tokio/src/net/udp/mod.rs
new file mode 100644
index 00000000..45656773
--- /dev/null
+++ b/tokio/src/net/udp/mod.rs
@@ -0,0 +1,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;