├── .gitignore ├── LICENSE ├── README.md ├── cmd └── ping │ └── ping.go ├── fastping.go └── fastping_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/README.md -------------------------------------------------------------------------------- /cmd/ping/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/cmd/ping/ping.go -------------------------------------------------------------------------------- /fastping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/fastping.go -------------------------------------------------------------------------------- /fastping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatsushid/go-fastping/HEAD/fastping_test.go --------------------------------------------------------------------------------