Skip to main content

nex_socket/icmp/
mod.rs

1//! ICMP socket.
2//!
3//! Supplies synchronous and asynchronous interfaces for sending and
4//! receiving Internet Control Message Protocol packets.
5#[cfg(feature = "async")]
6mod async_impl;
7mod config;
8mod sync_impl;
9
10#[cfg(feature = "async")]
11pub use async_impl::*;
12pub use config::*;
13pub use sync_impl::*;