2005-04-21 16:53:53 +02:00
|
|
|
/*
|
|
|
|
server/ip/gen/psip_hdr.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SERVER__IP__GEN__PSIP_HDR_H__
|
|
|
|
#define __SERVER__IP__GEN__PSIP_HDR_H__
|
|
|
|
|
|
|
|
typedef struct psip_io_hdr
|
|
|
|
{
|
|
|
|
u8_t pih_flags;
|
|
|
|
u8_t pih_dummy[3];
|
2005-06-28 17:19:58 +02:00
|
|
|
u32_t pih_nexthop;
|
2005-04-21 16:53:53 +02:00
|
|
|
} psip_io_hdr_t;
|
|
|
|
|
|
|
|
#define PF_LOC_REM_MASK 1
|
|
|
|
#define PF_LOC2REM 0
|
|
|
|
#define PF_REM2LOC 1
|
|
|
|
|
|
|
|
#endif /* __SERVER__IP__GEN__PSIP_HDR_H__ */
|
|
|
|
|
|
|
|
/*
|
2005-06-28 17:19:58 +02:00
|
|
|
* $PchId: psip_hdr.h,v 1.3 2001/02/19 07:35:38 philip Exp $
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|