From 05e5e79a706a560188c28aba8d765e1a8534e87b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 14 Apr 2004 02:53:54 +0000 Subject: [PATCH] 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. --- net.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 }, }; -- 2.40.0