This commit is contained in:
crusader 2018-09-18 00:21:39 +09:00
parent 46db6509b0
commit bb3e77205c
3 changed files with 18 additions and 13 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 = "fe733fd0e1674f537b47bf5c720f603d87740721" revision = "a2472a88ab6243321821dda3cac8b2045a2b3917"
[[projects]] [[projects]]
name = "github.com/google/gopacket" name = "github.com/google/gopacket"

View File

@ -7,15 +7,3 @@ import (
type PingOption struct { type PingOption struct {
ounp.PingOption ounp.PingOption
} }
type PingResponse struct {
ounp.PingResponse
}
type PingSummary struct {
ounp.PingSummary
}
type PingResult struct {
ounp.PingResult
}

17
ping/ping.go Normal file
View File

@ -0,0 +1,17 @@
package ping
import (
ounp "git.loafle.net/overflow/util-go/net/ping"
)
type PingResponse struct {
ounp.PingResponse
}
type PingSummary struct {
ounp.PingSummary
}
type PingResult struct {
ounp.PingResult
}