📄 icmp.h
字号:
/****************************************************************************
** File: icmp.h
**
** Author: Mike Borella
**
** Comments: Generic ICMP header format for fixed portion
**
** $Log: icmp.h,v $
** Revision 1.2 1998/06/12 20:49:36 mborella
** Added log tag
**
**
*****************************************************************************/
typedef struct _ICMPhdr
{
u_int8_t type;
u_int8_t code;
u_int16_t csum;
} ICMPhdr;
typedef struct _echoext
{
u_int16_t id;
u_int16_t seqno;
} echoext;
void dump_icmp(u_char *bp);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -