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