This commit is contained in:
crusader 2018-09-17 21:55:13 +09:00
parent 28b403860e
commit ec00e90410
2 changed files with 7 additions and 7 deletions

2
Gopkg.lock generated
View File

@ -5,7 +5,7 @@
branch = "master" branch = "master"
name = "git.loafle.net/overflow/util-go" name = "git.loafle.net/overflow/util-go"
packages = ["net/ping"] packages = ["net/ping"]
revision = "2423d927777a966fff3d1b0e34002b99306417bf" revision = "fe733fd0e1674f537b47bf5c720f603d87740721"
[[projects]] [[projects]]
name = "github.com/google/gopacket" name = "github.com/google/gopacket"

View File

@ -4,16 +4,16 @@ import (
ounp "git.loafle.net/overflow/util-go/net/ping" ounp "git.loafle.net/overflow/util-go/net/ping"
) )
type PingOptions struct { type PingOption struct {
ounp.PingOptions ounp.PingOption
} }
type Response struct { type PingResponse struct {
ounp.Response ounp.PingResponse
} }
type Summary struct { type PingSummary struct {
ounp.Summary ounp.PingSummary
} }
type PingResult struct { type PingResult struct {