6 releases

Uses old Rust 2015

0.3.0 Sep 23, 2019
0.2.1 Aug 11, 2019
0.2.0 Jun 17, 2018
0.1.2 Mar 18, 2018
0.1.0 Dec 6, 2017

#15 in #icmp

Download history 11/week @ 2023-12-04 11/week @ 2024-02-19 27/week @ 2024-02-26 20/week @ 2024-03-04 30/week @ 2024-03-11

88 downloads per month

MIT/Apache

29KB
764 lines

tokio-ping

Build Status Latest Version docs

tokio-ping is an asynchronous ICMP pinging library.

Usage example

Note, sending and receiving ICMP packets requires privileges.

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)
    }))
}

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3.5MB
~60K SLoC