ICMP protocol support and implementations.
This package is useful for sending and receiving packets
over the Internet Control Message Protocol (ICMP). It
currently offers a simple API and implementation for ping.
Installation
Add this to your Cargo.toml:
[]
= "0.1.1"
Examples
use PingBuilder;
let p = new
.host
.num_pings
.interval_secs
.timeout_secs
.debug
.build;
p.ping;