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

📄 snhash.h

📁 TCP-IP红宝书源代码
💻 H
字号:
/* snhash.h */

struct snhnode {			/* hash table node structure	*/
	struct mib_info *sh_mip;	/* points to a mib record	*/
	struct snhnode *sh_next;	/* next node in this hash bucket*/
};

#define S_HTABSIZ	101		/* hash table size - a prime #	*/
#define S_HTRADIX	21		/* hash table radix		*/

#define S_NUMTABS	7		/* number of table objects	*/

extern	struct	snhnode *snhtab[];	/* the hash table		*/

⌨️ 快捷键说明

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