05480c229a
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.
13 lines
215 B
C
13 lines
215 B
C
/*
|
|
server/ip/gen/udp.h
|
|
*/
|
|
|
|
#ifndef __SERVER__IP__GEN__UDP_H__
|
|
#define __SERVER__IP__GEN__UDP_H__
|
|
|
|
typedef u16_t udpport_t;
|
|
|
|
#define UDP_HDR_SIZE 8
|
|
#define UDP_IO_HDR_SIZE 16
|
|
|
|
#endif /* __SERVER__IP__GEN__UDP_H__ */
|