blob: be10c94888a67647c3320f359ab2e35b0628dbd0 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// go generate gen.go
2// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
3
4package ipv4
5
6// Internet Control Message Protocol (ICMP) Parameters, Updated: 2013-04-19
7const (
8 ICMPTypeEchoReply ICMPType = 0 // Echo Reply
9 ICMPTypeDestinationUnreachable ICMPType = 3 // Destination Unreachable
10 ICMPTypeRedirect ICMPType = 5 // Redirect
11 ICMPTypeEcho ICMPType = 8 // Echo
12 ICMPTypeRouterAdvertisement ICMPType = 9 // Router Advertisement
13 ICMPTypeRouterSolicitation ICMPType = 10 // Router Solicitation
14 ICMPTypeTimeExceeded ICMPType = 11 // Time Exceeded
15 ICMPTypeParameterProblem ICMPType = 12 // Parameter Problem
16 ICMPTypeTimestamp ICMPType = 13 // Timestamp
17 ICMPTypeTimestampReply ICMPType = 14 // Timestamp Reply
18 ICMPTypePhoturis ICMPType = 40 // Photuris
19)
20
21// Internet Control Message Protocol (ICMP) Parameters, Updated: 2013-04-19
22var icmpTypes = map[ICMPType]string{
23 0: "echo reply",
24 3: "destination unreachable",
25 5: "redirect",
26 8: "echo",
27 9: "router advertisement",
28 10: "router solicitation",
29 11: "time exceeded",
30 12: "parameter problem",
31 13: "timestamp",
32 14: "timestamp reply",
33 40: "photuris",
34}