package ipv6
const (
ICMPTypeDestinationUnreachable ICMPType = 1
ICMPTypePacketTooBig ICMPType = 2
ICMPTypeTimeExceeded ICMPType = 3
ICMPTypeParameterProblem ICMPType = 4
ICMPTypeEchoRequest ICMPType = 128
ICMPTypeEchoReply ICMPType = 129
ICMPTypeMulticastListenerQuery ICMPType = 130
ICMPTypeMulticastListenerReport ICMPType = 131
ICMPTypeMulticastListenerDone ICMPType = 132
ICMPTypeRouterSolicitation ICMPType = 133
ICMPTypeRouterAdvertisement ICMPType = 134
ICMPTypeNeighborSolicitation ICMPType = 135
ICMPTypeNeighborAdvertisement ICMPType = 136
ICMPTypeRedirect ICMPType = 137
ICMPTypeRouterRenumbering ICMPType = 138
ICMPTypeNodeInformationQuery ICMPType = 139
ICMPTypeNodeInformationResponse ICMPType = 140
ICMPTypeInverseNeighborDiscoverySolicitation ICMPType = 141
ICMPTypeInverseNeighborDiscoveryAdvertisement ICMPType = 142
ICMPTypeVersion2MulticastListenerReport ICMPType = 143
ICMPTypeHomeAgentAddressDiscoveryRequest ICMPType = 144
ICMPTypeHomeAgentAddressDiscoveryReply ICMPType = 145
ICMPTypeMobilePrefixSolicitation ICMPType = 146
ICMPTypeMobilePrefixAdvertisement ICMPType = 147
ICMPTypeCertificationPathSolicitation ICMPType = 148
ICMPTypeCertificationPathAdvertisement ICMPType = 149
ICMPTypeMulticastRouterAdvertisement ICMPType = 151
ICMPTypeMulticastRouterSolicitation ICMPType = 152
ICMPTypeMulticastRouterTermination ICMPType = 153
ICMPTypeFMIPv6 ICMPType = 154
ICMPTypeRPLControl ICMPType = 155
ICMPTypeILNPv6LocatorUpdate ICMPType = 156
ICMPTypeDuplicateAddressRequest ICMPType = 157
ICMPTypeDuplicateAddressConfirmation ICMPType = 158
ICMPTypeMPLControl ICMPType = 159
ICMPTypeExtendedEchoRequest ICMPType = 160
ICMPTypeExtendedEchoReply ICMPType = 161
)
var icmpTypes = map[ICMPType]string{
1: "destination unreachable",
2: "packet too big",
3: "time exceeded",
4: "parameter problem",
128: "echo request",
129: "echo reply",
130: "multicast listener query",
131: "multicast listener report",
132: "multicast listener done",
133: "router solicitation",
134: "router advertisement",
135: "neighbor solicitation",
136: "neighbor advertisement",
137: "redirect message",
138: "router renumbering",
139: "icmp node information query",
140: "icmp node information response",
141: "inverse neighbor discovery solicitation message",
142: "inverse neighbor discovery advertisement message",
143: "version 2 multicast listener report",
144: "home agent address discovery request message",
145: "home agent address discovery reply message",
146: "mobile prefix solicitation",
147: "mobile prefix advertisement",
148: "certification path solicitation message",
149: "certification path advertisement message",
151: "multicast router advertisement",
152: "multicast router solicitation",
153: "multicast router termination",
154: "fmipv6 messages",
155: "rpl control message",
156: "ilnpv6 locator update message",
157: "duplicate address request",
158: "duplicate address confirmation",
159: "mpl control message",
160: "extended echo request",
161: "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. |