nex-socket 0.27.0

Cross-platform socket library. Part of nex project. Offers socket-related functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ICMP socket.
//!
//! Supplies synchronous and asynchronous interfaces for sending and
//! receiving Internet Control Message Protocol packets.
#[cfg(feature = "async")]
mod async_impl;
mod config;
mod sync_impl;

#[cfg(feature = "async")]
pub use async_impl::*;
pub use config::*;
pub use sync_impl::*;