home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC15B44.ZIP / WATTSRC.ZIP / INCLUDE / ETHDEV.H < prev    next >
Text File  |  1994-11-19  |  351b  |  17 lines

  1. /*
  2.  *
  3.  * Ethernet Interface
  4.  */
  5.  
  6. extern byte *_eth_FormatPacket(), *_eth_WaitPacket();
  7.  
  8. typedef struct ether {
  9.     byte    dest[6];       /* destination ethernet address */
  10.     byte    src[6];        /* source ethernet address */
  11.     word    type;
  12.     byte    data[ 1500 ];
  13. };
  14.  
  15.  
  16. #define ETH_MIN    60              /* Minimum Ethernet packet size */
  17.