ae75f9d4e5
- 755 -> 644
23 lines
402 B
C
23 lines
402 B
C
/*
|
|
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];
|
|
u32_t pih_nexthop;
|
|
} 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__ */
|
|
|
|
/*
|
|
* $PchId: psip_hdr.h,v 1.3 2001/02/19 07:35:38 philip Exp $
|
|
*/
|