ping 0.7.1

Simple and naive ping implementation in Rust.
Documentation
1
2
3
4
5
6
7
8
mod errors;
mod packet;
mod ping;

pub use crate::errors::Error;
pub use crate::ping::{
    Ping, SocketType, SocketType::DGRAM, SocketType::RAW, dgramsock, new, ping, rawsock,
};