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

📄 af.h

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 H
字号:
/*	af.h	6.1	83/07/29	*//* * Address family routines, * used in handling generic sockaddr structures. * * Hash routine is called *	af_hash(addr, h); *	struct sockaddr *addr; struct afhash *h; * producing an afhash structure for addr. * * Netmatch routine is called *	af_netmatch(addr1, addr2); * where addr1 and addr2 are sockaddr *.  Returns 1 if network * values match, 0 otherwise. */struct afswitch {	int	(*af_hash)();	int	(*af_netmatch)();};struct afhash {	u_int	afh_hosthash;	u_int	afh_nethash;};#ifdef KERNELextern struct	afswitch afswitch[];#endif

⌨️ 快捷键说明

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