Golang native ICMP-based ping IPv4 and IPv6 library
For usage and examples see the Godoc.
package main
import (
"fmt"
"log"
"github.com/mehrdadrad/ping"
)
func main() {
p, err := ping.New("google.com")
if err != nil {
log.Fatal(err)
}
p.SetCount(4)
r, err := p.Run()
if err != nil {
log.Fatal(err)
}
for pr := range r {
fmt.Printf("%#v\n", pr)
}
#go run main.go
ping.Response{RTT:4.938, Size:64, TTL:56, Seq:0, Addr:"172.217.5.206", If:"eth0", Err:error(nil)}
ping.Response{RTT:5.202, Size:64, TTL:56, Seq:1, Addr:"172.217.5.206", If:"eth0", Err:error(nil)}
ping.Response{RTT:6.576, Size:64, TTL:56, Seq:2, Addr:"172.217.5.206", If:"eth0", Err:error(nil)}
ping.Response{RTT:4.126, Size:64, TTL:56, Seq:3, Addr:"172.217.5.206", If:"eth0", Err:error(nil)}
ping.Response{RTT:4.983, Size:64, TTL:56, Seq:4, Addr:"172.217.5.206", If:"eth0", Err:error(nil)}
This project is licensed under MIT license. Please read the LICENSE file.
Welcomes any kind of contribution, please follow the next steps:
Version | Tag | Published |
---|---|---|
v0.2.6-0.20200614011819-b595f19a7e21 | 1yr ago | |
v0.2.5 | 2yrs ago | |
v0.2.1 | 2yrs ago | |
v0.2.1-0.20200512143048-eab79309159c | 2yrs ago |