xref: /minix3/minix/include/net/gen/psip_hdr.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /*
2*433d6423SLionel Sambuc server/ip/gen/psip_hdr.h
3*433d6423SLionel Sambuc */
4*433d6423SLionel Sambuc 
5*433d6423SLionel Sambuc #ifndef __SERVER__IP__GEN__PSIP_HDR_H__
6*433d6423SLionel Sambuc #define __SERVER__IP__GEN__PSIP_HDR_H__
7*433d6423SLionel Sambuc 
8*433d6423SLionel Sambuc typedef struct psip_io_hdr
9*433d6423SLionel Sambuc {
10*433d6423SLionel Sambuc 	u8_t pih_flags;
11*433d6423SLionel Sambuc 	u8_t pih_dummy[3];
12*433d6423SLionel Sambuc 	u32_t pih_nexthop;
13*433d6423SLionel Sambuc } psip_io_hdr_t;
14*433d6423SLionel Sambuc 
15*433d6423SLionel Sambuc #define PF_LOC_REM_MASK	1
16*433d6423SLionel Sambuc #define PF_LOC2REM		0
17*433d6423SLionel Sambuc #define PF_REM2LOC		1
18*433d6423SLionel Sambuc 
19*433d6423SLionel Sambuc #endif /* __SERVER__IP__GEN__PSIP_HDR_H__ */
20*433d6423SLionel Sambuc 
21*433d6423SLionel Sambuc /*
22*433d6423SLionel Sambuc  * $PchId: psip_hdr.h,v 1.3 2001/02/19 07:35:38 philip Exp $
23*433d6423SLionel Sambuc  */
24