1//! UDP socket.
2//!
3//! Provides synchronous and asynchronous UDP APIs along with
4//! configuration utilities for common socket options.
5mod async_impl;
6mod config;
7mod sync_impl;
89pub use async_impl::*;
10pub use config::*;
11pub use sync_impl::*;