]> granicus.if.org Git - strace/commitdiff
2004-04-13 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@redhat.com>
Wed, 14 Apr 2004 02:53:54 +0000 (02:53 +0000)
committerRoland McGrath <roland@redhat.com>
Wed, 14 Apr 2004 02:53:54 +0000 (02:53 +0000)
* net.c (msg_flags): Grok MSG_FIX, MSG_SYN, MSG_RST, MSG_NOSIGNAL,
MSG_MORE.
From Ulrich Drepper <drepper@redhat.com>.
Fixes RH#120541.

net.c

diff --git a/net.c b/net.c
index e986a42772c143212b38a9ab66bd5ff0a47f60a4..6efa8710a4676fb2287e3a363fe7d05e31c00d03 100644 (file)
--- a/net.c
+++ b/net.c
@@ -360,6 +360,21 @@ static struct xlat msg_flags[] = {
 #endif
 #ifdef MSG_PROBE
        { MSG_PROBE,    "MSG_PROBE"     },
+#endif
+#ifdef MSG_FIN
+       { MSG_FIN,      "MSG_FIN"       },
+#endif
+#ifdef MSG_SYN
+       { MSG_SYN,      "MSG_SYN"       },
+#endif
+#ifdef MSG_RST
+       { MSG_RST,      "MSG_RST"       },
+#endif
+#ifdef MSG_NOSIGNAL
+       { MSG_NOSIGNAL, "MSG_NOSIGNAL"  },
+#endif
+#ifdef MSG_MORE
+       { MSG_MORE,     "MSG_MORE"      },
 #endif
        { 0,            NULL            },
 };