This commit is contained in:
crusader 2018-09-17 20:52:44 +09:00
parent f6eb351409
commit 28b403860e
2 changed files with 28 additions and 1 deletions

8
Gopkg.lock generated
View File

@ -1,6 +1,12 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
branch = "master"
name = "git.loafle.net/overflow/util-go"
packages = ["net/ping"]
revision = "2423d927777a966fff3d1b0e34002b99306417bf"
[[projects]] [[projects]]
name = "github.com/google/gopacket" name = "github.com/google/gopacket"
packages = ["."] packages = ["."]
@ -10,6 +16,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "355ee061c527e073afa8c024489befb54aeaa19e316b5805db73a9fe25c66bd4" inputs-digest = "73befcd55a94a3a5149a5f07adcad15c8760bee722c3d6f152753bdea3dbc3e7"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

21
config/ping/ping.go Normal file
View File

@ -0,0 +1,21 @@
package ping
import (
ounp "git.loafle.net/overflow/util-go/net/ping"
)
type PingOptions struct {
ounp.PingOptions
}
type Response struct {
ounp.Response
}
type Summary struct {
ounp.Summary
}
type PingResult struct {
ounp.PingResult
}