]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add some missing MSG_* flags from Linux 2.2.9.
authorUlrich Drepper <drepper@redhat.com>
Sun, 13 Jun 1999 09:27:04 +0000 (09:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 13 Jun 1999 09:27:04 +0000 (09:27 +0000)
ChangeLog
sysdeps/unix/sysv/linux/bits/socket.h

index 2401e9941ed449866fae345adc6f0627ece72471..bd71c5c570f6d39647738df7f6a66778553c813c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-06-13  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
+
+       * sysdeps/unix/sysv/linux/bits/socket.h: Add some missing
+       MSG_* flags from Linux 2.2.9.
+
 1999-06-12  Ulrich Drepper  <drepper@cygnus.com>
 
        * locale/lc-time.c: Add free_mem function to free if necessary
index 37a9d930ff5f3c730fc56b3520543dcccdd857fe..0a93a42f351fd48c50e2c80180059c866cd5bb09 100644 (file)
@@ -174,8 +174,28 @@ enum
 #endif
     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
+    MSG_TRUNC          = 0x20,
+#define        MSG_TRUNC       MSG_TRUNC
+    MSG_DONTWAIT       = 0x40, /* Nonblocking IO.  */
+#define        MSG_DONTWAIT    MSG_TRUNC
+    MSG_EOR            = 0x80, /* End of record.  */
+#define        MSG_EOR         MSG_EOR
+    MSG_WAITALL                = 0x100, /* Wait for a full request.  */
+#define        MSG_WAITALL     MSG_WAITALL
+    MSG_FIN            = 0x200,
+#define        MSG_FIN         MSG_FIN
+    MSG_SYN            = 0x400,
+#define        MSG_SYN         MSG_SYN
+    MSG_URG            = 0x800,
+#define        MSG_URG         MSG_URG
+    MSG_RST            = 0x1000,
+#define        MSG_RST         MSG_RST
+    MSG_ERRQUEUE       = 0x2000,
+#define        MSG_ERRQUEUE    MSG_ERRQUEUE
+    MSG_NOSIGNAL       = 0x4000
+#define        MSG_NOSIGNAL    MSG_NOSIGNAL
   };