1 /*
2 inet/osdep_eth.h
3
4 Created: Dec 30, 1991 by Philip Homburg
5 */
6
7 #ifndef INET__OSDEP_ETH_H
8 #define INET__OSDEP_ETH_H
9
10 #define IOVEC_NR 16
11 #define RD_IOVEC ((ETH_MAX_PACK_SIZE + BUF_S -1)/BUF_S)
12
13 typedef struct osdep_eth_port
14 {
15 int etp_minor;
16 int etp_task;
17 int etp_port;
18 iovec_t etp_wr_iovec[IOVEC_NR];
19 iovec_t etp_rd_iovec[RD_IOVEC];
20 } osdep_eth_port_t;
21
22 #endif /* INET__OSDEP_ETH_H */
23
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.