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
/
arp_io.h
blob
583cd6f310077cff63d49d7e0365fa8609464ba7
1
/*
2
net/gen/arp_io.h
3
4
Created: Jan 2001 by Philip Homburg <philip@f-mnx.phicoh.com>
5
*/
6
7
typedef
struct
nwio_arp
8
{
9
int
nwa_entno
;
10
u32_t nwa_flags
;
11
ipaddr_t nwa_ipaddr
;
12
ether_addr_t nwa_ethaddr
;
13
}
nwio_arp_t
;
14
15
#define NWAF_EMPTY 0
16
#define NWAF_INCOMPLETE 1
17
#define NWAF_DEAD 2
18
#define NWAF_PERM 4
19
#define NWAF_PUB 8
20
21
/*
22
* $PchId: arp_io.h,v 1.2 2004/08/03 11:01:59 philip Exp $
23
*/