fs/mfs: Remove a few assert.h includes
[minix3.git] / minix / include / net / gen / arp_io.h
blob583cd6f310077cff63d49d7e0365fa8609464ba7
1 /*
2 net/gen/arp_io.h
4 Created: Jan 2001 by Philip Homburg <philip@f-mnx.phicoh.com>
5 */
7 typedef struct nwio_arp
9 int nwa_entno;
10 u32_t nwa_flags;
11 ipaddr_t nwa_ipaddr;
12 ether_addr_t nwa_ethaddr;
13 } nwio_arp_t;
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
22 * $PchId: arp_io.h,v 1.2 2004/08/03 11:01:59 philip Exp $