//! A capability-based network API modeled after [`async_std::net`].
//!
//! This corresponds to [`async_std::net`].
//!
//! Instead of [`async_std::net`]'s constructor methods which take an address
//! to connect to, this crates has methods on [`Pool`] which operate on
//! addresses which must be present in the pool.
//!
//! [`Pool`]: struct.Pool.html
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// Re-export things from `async_std::net` that we can use as-is.
pub use ;
// TODO: re-export experimental Ipv6MulticastScope?