1//! ICMP socket.
2//!
3//! Supplies synchronous and asynchronous interfaces for sending and
4//! receiving Internet Control Message Protocol packets.
5mod async_impl;
6mod config;
7mod sync_impl;
89pub use async_impl::*;
10pub use config::*;
11pub use sync_impl::*;