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

📄 icmp.h

📁 Minix比较全的源码
💻 H
字号:
/*icmp.hCopyright 1995 Philip Homburg*/#ifndef ICMP_H#define ICMP_H#define ICMP_MAX_DATAGRAM	8196#define ICMP_DEF_TTL		96/* Rate limit. The implementation is a bit sloppy and may send twice the * number of packets.  */#define ICMP_MAX_RATE		100	/* This many per interval */#define ICMP_RATE_INTERVAL	(1*HZ)	/* Interval in ticks */#define ICMP_RATE_WARN		10	/* Report this many dropped packets *//* Prototypes */void icmp_prep ARGS(( void ));void icmp_init ARGS(( void ));#endif /* ICMP_H *//* * $PchId: icmp.h,v 1.7 2001/04/19 19:06:18 philip Exp $ */

⌨️ 快捷键说明

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