📄 icmpmsg.c
字号:
/* ICMP message type tables
*/
#include "global.h"
/* ICMP message types */
char *Icmptypes[] = {
"Echo Reply",
NULL,
NULL,
"Unreachable",
"Source Quench",
"Redirect",
NULL,
NULL,
"Echo Request",
NULL,
NULL,
"Time Exceeded",
"Parameter Problem",
"Timestamp",
"Timestamp Reply",
"Information Request",
"Information Reply",
"Address mask request",
"Address mask reply",
"Security Association"
};
/* ICMP unreachable messages */
char *Unreach[] = {
"Network",
"Host",
"Protocol",
"Port",
"Fragmentation",
"Source route",
"Dest net unknown",
"Dest host unknown",
"Source host isolated",
"Net prohibited",
"Host prohibited",
"Net TOS",
"Host TOS",
"Administratively Prohibited"
};
/* ICMP Time exceeded messages */
char *Exceed[] = {
"Time-to-live",
"Fragment reassembly"
};
/* ICMP redirect messages */
char *Redirect[] = {
"Network",
"Host",
"TOS & Network",
"TOS & Host"
};
/* Bad SAID messages */
char *Said_icmp[] = {
"Unknown SAID",
"Authentication failed",
"Decryption failed"
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -