repo.or.cz
/
open-ps2-loader.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git]
/
modules
/
wip
/
lanman
/
eth.h
blob
cfa548f9d0a7808200bfa3fc7e679bee9de05460
1
/*
2
Copyright (c) 2010 jimmikaelkael <jimmikaelkael@wanadoo.fr>
3
Licenced under Academic Free License version 3.0
4
*/
5
6
#ifndef ETH_H
7
#define ETH_H
8
9
#include <tamtypes.h>
10
11
typedef
struct
{
12
// Ethernet header (14)
13
u8 addr_dst
[
6
];
14
u8 addr_src
[
6
];
15
u16 type
;
16
}
eth_hdr_t
;
17
18
#endif
/* ETH_H */