tokio-ping 0.2.1

Asynchronous ICMP pinging library
Documentation
//! tokio-ping is an asynchronous ICMP pinging library.
//!
//! The repository is located at <https://github.com/knsd/tokio-ping/>.
//!
//! # Usage example
//!
//! Note, sending and receiving ICMP packets requires privileges.
//!
//! ```rust,no_run
//! extern crate futures;
//! extern crate tokio;
//!
//! extern crate tokio_ping;
//!
//! use futures::{Future, Stream};
//!
//! fn main() {
//!     let addr = std::env::args().nth(1).unwrap().parse().unwrap();
//!
//!     let pinger = tokio_ping::Pinger::new();
//!     let stream = pinger.and_then(move |pinger| Ok(pinger.chain(addr).stream()));
//!     let future = stream.and_then(|stream| {
//!         stream.take(3).for_each(|mb_time| {
//!             match mb_time {
//!                 Some(time) => println!("time={}", time),
//!                 None => println!("timeout"),
//!             }
//!             Ok(())
//!         })
//!     });
//!
//!     tokio::run(future.map_err(|err| {
//!         eprintln!("Error: {}", err)
//!     }))
//! }
//! ```

#[macro_use] extern crate failure;
#[macro_use] extern crate futures;
extern crate libc;
extern crate mio;
extern crate rand;
extern crate socket2;
extern crate time;
extern crate parking_lot;
extern crate tokio_executor;
extern crate tokio_reactor;
extern crate tokio_timer;

mod errors;
mod packet;
mod ping;
mod socket;

pub use errors::Error;
pub use ping::{Pinger, PingChain, PingChainStream, PingFuture};