mirror of git://sourceware.org/git/glibc.git
Update.
1998-03-31 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/bits/socket.h (MSG_*): Also define as macros.
This commit is contained in:
parent
12264bd7fa
commit
12bf4b4ade
|
@ -1,3 +1,8 @@
|
||||||
|
1998-03-31 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/bits/socket.h (MSG_*): Also define as
|
||||||
|
macros.
|
||||||
|
|
||||||
1998-03-31 18:11 Ulrich Drepper <drepper@cygnus.com>
|
1998-03-31 18:11 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* include/mntent.h: New file.
|
* include/mntent.h: New file.
|
||||||
|
|
|
@ -130,10 +130,15 @@ struct sockaddr
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
MSG_OOB = 0x01, /* Process out-of-band data. */
|
MSG_OOB = 0x01, /* Process out-of-band data. */
|
||||||
|
#define MSG_OOB MSG_OOB
|
||||||
MSG_PEEK = 0x02, /* Peek at incoming messages. */
|
MSG_PEEK = 0x02, /* Peek at incoming messages. */
|
||||||
|
#define MSG_PEEK MSG_PEEK
|
||||||
MSG_DONTROUTE = 0x04, /* Don't use local routing. */
|
MSG_DONTROUTE = 0x04, /* Don't use local routing. */
|
||||||
|
#define MSG_DONTROUTE MSG_DONTROUTE
|
||||||
MSG_CTRUNC = 0x08, /* Control data lost before delivery. */
|
MSG_CTRUNC = 0x08, /* Control data lost before delivery. */
|
||||||
|
#define MSG_CTRUNC MSG_CTRUNC
|
||||||
MSG_PROXY = 0x10 /* Supply or ask second address. */
|
MSG_PROXY = 0x10 /* Supply or ask second address. */
|
||||||
|
#define MSG_PROXY MSG_PROXY
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue