From: Roland McGrath Date: Wed, 14 Apr 2004 02:53:54 +0000 (+0000) Subject: 2004-04-13 Roland McGrath X-Git-Tag: v4.5.18~601 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05e5e79a706a560188c28aba8d765e1a8534e87b;p=strace 2004-04-13 Roland McGrath * net.c (msg_flags): Grok MSG_FIX, MSG_SYN, MSG_RST, MSG_NOSIGNAL, MSG_MORE. From Ulrich Drepper . Fixes RH#120541. --- diff --git a/net.c b/net.c index e986a427..6efa8710 100644 --- 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 }, };