From: Ben Gras Date: Thu, 1 Sep 2011 13:03:15 +0000 (+0000) Subject: define MSG_* X-Git-Tag: v3.2.0~325 X-Git-Url: http://zhaoyanbai.com/repos/man.dig.html?a=commitdiff_plain;h=ad0c7879001d0b1adda26b6f9bc2c515e434586f;p=minix.git define MSG_* . these are not actually supported at runtime . will allow packages to compile easier, and still work in some cases (e.g. glib2) --- diff --git a/nbsd_include/sys/socket.h b/nbsd_include/sys/socket.h index a8628cdef..24b9d4525 100644 --- a/nbsd_include/sys/socket.h +++ b/nbsd_include/sys/socket.h @@ -298,4 +298,9 @@ int socket(int, int, int); int socketpair(int, int, int, int *); __END_DECLS +#define MSG_OOB 0x0001 /* process out-of-band data */ +#define MSG_PEEK 0x0002 /* peek at incoming message */ +#define MSG_DONTROUTE 0x0004 /* send without using routing tables */ +#define MSG_EOR 0x0008 /* complete record */ + #endif /* !_SYS_SOCKET_H_ */