22 lines
382 B
C
Executable file
22 lines
382 B
C
Executable file
/*
|
|
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];
|
|
} 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.2 1995/11/17 22:22:35 philip Exp $
|
|
*/
|