minix/common/include/net/gen/psip_hdr.h
Gianluca Guida 05480c229a Move network includes and lib.h into common/include subdir.
This patch moves further includes (the network part and lib.h) in common/.
It is the last part to get the netbsd libc to compile under minix. Further moves will be needed as we get the netbsd libc to compile minix itself.

Also, this patch add #ifndef's to termios.h, as it create problems with netbsd's namespace.h.
2011-02-14 12:49:18 +00:00

24 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 $
*/