source: trunk/minix/include/net/gen/eth_hdr.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 261 bytes
Line 
1/*
2server/ip/gen/eth_hdr.h
3*/
4
5#ifndef __SERVER__IP__GEN__ETH_HDR_H__
6#define __SERVER__IP__GEN__ETH_HDR_H__
7
8typedef struct eth_hdr
9{
10 ether_addr_t eh_dst;
11 ether_addr_t eh_src;
12 ether_type_t eh_proto;
13} eth_hdr_t;
14
15#endif /* __SERVER__IP__GEN__ETH_HDR_H__ */
Note: See TracBrowser for help on using the repository browser.