root / lab4 / .minix-src / include / net / gen / eth_hdr.h @ 14
History | View | Annotate | Download (288 Bytes)
1 | 13 | up20180614 | /*
|
---|---|---|---|
2 | server/ip/gen/eth_hdr.h
|
||
3 | */
|
||
4 | |||
5 | #ifndef __SERVER__IP__GEN__ETH_HDR_H__
|
||
6 | #define __SERVER__IP__GEN__ETH_HDR_H__
|
||
7 | |||
8 | #include <net/if_ether.h> |
||
9 | |||
10 | typedef struct eth_hdr |
||
11 | { |
||
12 | ether_addr_t eh_dst; |
||
13 | ether_addr_t eh_src; |
||
14 | ether_type_t eh_proto; |
||
15 | } eth_hdr_t; |
||
16 | |||
17 | #endif /* __SERVER__IP__GEN__ETH_HDR_H__ */ |