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

📄 spx.h

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

typedef struct _SPXhdr
{
  u_int8_t  cc;      /* connection control */
  u_int8_t  ds_type; /* data stream type */
  u_int16_t s_id;    /* source connection id */
  u_int16_t d_id;    /* destination connection id */
  u_int16_t seqno;   /* sequence number */
  u_int16_t ackno;   /* acknowledgement number */
  u_int16_t allocno; /* allocation number */
} SPXhdr;

⌨️ 快捷键说明

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