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