The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/servers/inet/osdep_eth.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2 inet/osdep_eth.h
    3 
    4 Created:        Dec 30, 1991 by Philip Homburg
    5 
    6 Copyright 1995 Philip Homburg
    7 */
    8 
    9 #ifndef INET__OSDEP_ETH_H
   10 #define INET__OSDEP_ETH_H
   11 
   12 #include "generic/event.h"
   13 
   14 #define IOVEC_NR        16
   15 #define RD_IOVEC        ((ETH_MAX_PACK_SIZE + BUF_S -1)/BUF_S)
   16 
   17 typedef struct osdep_eth_port
   18 {
   19         int etp_task;
   20         int etp_port;
   21         int etp_recvconf;
   22         iovec_t etp_wr_iovec[IOVEC_NR];
   23         iovec_t etp_rd_iovec[RD_IOVEC];
   24         event_t etp_recvev;
   25         message etp_sendrepl;
   26         message etp_recvrepl;
   27 } osdep_eth_port_t;
   28 
   29 #endif /* INET__OSDEP_ETH_H */
   30 
   31 /*
   32  * $PchId: osdep_eth.h,v 1.6 2001/04/20 06:39:54 philip Exp $
   33  */

Cache object: 92dcf7e3d068062b605840a9ceac8f5e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.