repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fs/mfs: Remove a few assert.h includes
[minix3.git]
/
minix
/
include
/
net
/
gen
/
eth_hdr.h
blob
3d882f7e80749d04cb1db4dc68f4643d340a4421
1
/*
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__ */