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

📄 ipx.h

📁 该程序类似于tcpdump软件
💻 H
字号:
/**************************************************************************** 
** File: ipx.h
**
** Author: Mike Borella
**
** Comments: IPX header format and such
**
** $Log: ipx.h,v $
** Revision 1.2  1998/06/12 20:48:24  mborella
** Added log tag
**
**
*****************************************************************************/

typedef struct _IPXhdr
{
  u_int16_t csum;
  u_int16_t len;
  u_int8_t  tc;
  u_int8_t  pt;
  u_int32_t dstnet;
  u_char    dstnode[6];
  u_int16_t dstport;
  u_int32_t srcnet;
  u_char    srcnode[6];
  u_int16_t srcport;
} IPXhdr;

#define IPXHDR_SIZE 30

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -