package ipv4
const (
ICMPTypeEchoReply ICMPType = 0
ICMPTypeDestinationUnreachable ICMPType = 3
ICMPTypeRedirect ICMPType = 5
ICMPTypeEcho ICMPType = 8
ICMPTypeRouterAdvertisement ICMPType = 9
ICMPTypeRouterSolicitation ICMPType = 10
ICMPTypeTimeExceeded ICMPType = 11
ICMPTypeParameterProblem ICMPType = 12
ICMPTypeTimestamp ICMPType = 13
ICMPTypeTimestampReply ICMPType = 14
ICMPTypePhoturis ICMPType = 40
ICMPTypeExtendedEchoRequest ICMPType = 42
ICMPTypeExtendedEchoReply ICMPType = 43
)
var icmpTypes = map[ICMPType]string{
0: "echo reply",
3: "destination unreachable",
5: "redirect",
8: "echo",
9: "router advertisement",
10: "router solicitation",
11: "time exceeded",
12: "parameter problem",
13: "timestamp",
14: "timestamp reply",
40: "photuris",
42: "extended echo request",
43: "extended echo reply",
}
 |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |