root / lab4 / .minix-src / include / net / gen / arp_io.h @ 13
History | View | Annotate | Download (384 Bytes)
1 | 13 | up20180614 | /*
|
---|---|---|---|
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 | */ |