From 62f18d07ba8a7ee8e480cb723fb9b969ca17f822 Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Tue, 20 Oct 2020 09:51:23 +0700 Subject: [PATCH] doc/go1.16: document net TCP listener's backlog size update Updates #41470 Change-Id: Iebd3a339504aa7f8834853d6a740557fb3bce3ef Reviewed-on: https://go-review.googlesource.com/c/go/+/262938 Trust: Cuong Manh Le Trust: Emmanuel Odeke Run-TryBot: Cuong Manh Le TryBot-Result: Go Bot Reviewed-by: Ian Lance Taylor Reviewed-by: Emmanuel Odeke --- doc/go1.16.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/go1.16.html b/doc/go1.16.html index 43bcc779e5..2f2e395729 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -228,6 +228,12 @@ Do not send CLs removing the interior tags from such phrases. with "use of closed network connection".

+

+ In previous Go releases the default TCP listener backlog size on Linux systems, + set by /proc/sys/net/core/somaxconn, was limited to a maximum of 65535. + On Linux kernel version 4.1 and above, the maximum is now 4294967295. +

+

reflect

-- 2.50.0