ping-async 1.0.2

Unprivileged Async Ping
Documentation
1
2
3
4
5
6
7
8
9
10
11
// platform/mod.rs

#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "windows")]
pub use self::windows::IcmpEchoRequestor;

#[cfg(any(target_os = "macos", target_os = "linux"))]
mod socket;
#[cfg(any(target_os = "macos", target_os = "linux"))]
pub use self::socket::IcmpEchoRequestor;