From: Dmitry V. Levin Date: Thu, 1 Dec 2011 21:06:00 +0000 (+0000) Subject: * net.c (socktcpoptions): Add more TCP_* constants from linux/tcp.h X-Git-Tag: v4.7~222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b05fc5463be8df587b4acc8f522f51e21bc22be8;p=strace * net.c (socktcpoptions): Add more TCP_* constants from linux/tcp.h Reported-by: Rick Jones --- diff --git a/net.c b/net.c index 025ae9c3..4e8df10a 100644 --- a/net.c +++ b/net.c @@ -1118,6 +1118,24 @@ static const struct xlat socktcpoptions[] = { #endif #if defined(TCP_QUICKACK) { TCP_QUICKACK, "TCP_QUICKACK" }, +#endif +#if defined(TCP_CONGESTION) + { TCP_CONGESTION, "TCP_CONGESTION" }, +#endif +#if defined(TCP_MD5SIG) + { TCP_MD5SIG, "TCP_MD5SIG" }, +#endif +#if defined(TCP_COOKIE_TRANSACTIONS) + { TCP_COOKIE_TRANSACTIONS, "TCP_COOKIE_TRANSACTIONS" }, +#endif +#if defined(TCP_THIN_LINEAR_TIMEOUTS) + { TCP_THIN_LINEAR_TIMEOUTS, "TCP_THIN_LINEAR_TIMEOUTS" }, +#endif +#if defined(TCP_THIN_DUPACK) + { TCP_THIN_DUPACK, "TCP_THIN_DUPACK" }, +#endif +#if defined(TCP_USER_TIMEOUT) + { TCP_USER_TIMEOUT, "TCP_USER_TIMEOUT" }, #endif { 0, NULL }, };