1
0
mirror of https://github.com/taigrr/go-fastping synced 2025-01-18 05:03:15 -08:00

Fix documents

This commit is contained in:
Tatsushi Demachi 2014-10-10 20:59:57 +09:00
parent be67e41b89
commit 8242021828
2 changed files with 7 additions and 5 deletions

View File

@ -1,13 +1,15 @@
go-fastping go-fastping
=========== ===========
go-fastping is a Go language port of Marc Lehmann's AnyEvent::FastPing Perl go-fastping is a Go language's ICMP ping library inspired by AnyEvent::FastPing
module to send ICMP ECHO REQUEST packets quickly. Original Perl module is Perl module to send ICMP ECHO REQUEST packets quickly. Original Perl module is
available at available at
http://search.cpan.org/~mlehmann/AnyEvent-FastPing-2.01/ http://search.cpan.org/~mlehmann/AnyEvent-FastPing-2.01/
It hasn't been fully implemented original functions yet and only for IPv4 now. It hasn't been fully implemented original functions yet and only for IPv4 now.
[![GoDoc](https://godoc.org/github.com/tatsushid/go-fastping?status.svg)](https://godoc.org/github.com/tatsushid/go-fastping)
## Installation ## Installation
Install and update this go package with `go get -u github.com/tatsushid/go-fastping` Install and update this go package with `go get -u github.com/tatsushid/go-fastping`

View File

@ -1,6 +1,6 @@
// Package fastping is a Go language port of Marc Lehmann's AnyEvent::FastPing // Package fastping is an ICMP ping library inspired by AnyEvent::FastPing Perl
// Perl module to send ICMP ECHO REQUEST packets quickly. Original Perl module // module to send ICMP ECHO REQUEST packets quickly. Original Perl module is
// is available at // available at
// http://search.cpan.org/~mlehmann/AnyEvent-FastPing-2.01/ // http://search.cpan.org/~mlehmann/AnyEvent-FastPing-2.01/
// //
// It hasn't been fully implemented original functions yet and only for IPv4 // It hasn't been fully implemented original functions yet and only for IPv4