📄 global.h
字号:
/*
File Name: global.h
Description:
Definitions of the global parameters
Modification History:
Dec 22 2005 Lizq Created
*/
#ifndef __GLOBAL_H__
#define __GLOBAL_H__
#define __DEBUG__
#define MAXENTRIES 200000 /* An array of table entries */
#define MAXTRAFFIC 1000000 /* Traffic */
#define MAXLENGTH 32 /*32 for IPv4 and 128 for IPv6*/
#define DEFAULT_NH 0 /*default next hop 0*/
#define MLEN 100000
typedef unsigned long val32_t;
typedef unsigned short val16_t;
typedef unsigned char val8_t;
typedef unsigned char uchar;
typedef uchar bool;
#define TRUE 1
#define FALSE 0
#endif /* __GLOBAL_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -