⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icmp.h

📁 该程序类似于tcpdump软件
💻 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 + -