osdep_eth.h
来自「Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁」· C头文件 代码 · 共 34 行
H
34 行
/*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 + =
减小字号Ctrl + -
显示快捷键?