15 lines
365 B
Go
15 lines
365 B
Go
package Const_Fields
|
|
const (
|
|
ICMP_Type_Unreachable = 0x03
|
|
ICMP_Type_Exceeded = 0x0b
|
|
ICMP_Type_Paremeter_problem = 0x0c
|
|
ICMP_Type_Source_quench = 0x04
|
|
ICMP_Type_Redirect = 0x05
|
|
ICMP_Type_Echo = 0x08
|
|
ICMP_Type_Reply = 0x00
|
|
ICMP_Type_Timestamp = 0x0d
|
|
ICMP_Type_TimestampReply = 0x0e
|
|
ICMP_Type_InformationRequest = 0x0f
|
|
ICMP_Type_InformationReply = 0x10
|
|
|
|
) |