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

📄 osdep_eth.h

📁 Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁的类UNIX系统。]
💻 H
字号:
/*inet/osdep_eth.hCreated:	Dec 30, 1991 by Philip HomburgCopyright 1995 Philip Homburg*/#ifndef INET__OSDEP_ETH_H#define INET__OSDEP_ETH_H#include "generic/event.h"#define IOVEC_NR	16#define RD_IOVEC	((ETH_MAX_PACK_SIZE + BUF_S -1)/BUF_S)typedef struct osdep_eth_port{	int etp_task;	int etp_port;	int etp_recvconf;	iovec_t etp_wr_iovec[IOVEC_NR];	iovec_t etp_rd_iovec[RD_IOVEC];	event_t etp_recvev;	message etp_sendrepl;	message etp_recvrepl;} osdep_eth_port_t;#endif /* INET__OSDEP_ETH_H *//* * $PchId: osdep_eth.h,v 1.6 2001/04/20 06:39:54 philip Exp $ */

⌨️ 快捷键说明

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