tiny-ping 0.6.2

Small Asynchronous ICMP library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod error;
mod icmp;
mod packet;
mod ping;
mod socket;

pub use error::Error;
pub use icmp::EchoReply;
pub use ping::{PingResult, Pinger, SocketType};

#[deprecated(
    since = "0.6.0",
    note = "packet internals are not part of the stable API"
)]
pub use packet::{
    EchoReply as ER1, EchoRequest, ICMP_HEADER_SIZE, IcmpV4, IcmpV6, IpV4Packet, IpV4Protocol,
};