?? ipx.h
字號(hào):
/****************************************************************************
** 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -