From: Cuong Manh Le Date: Tue, 20 Oct 2020 02:51:23 +0000 (+0700) Subject: doc/go1.16: document net TCP listener's backlog size update X-Git-Tag: go1.16beta1~625 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=62f18d07ba8a7ee8e480cb723fb9b969ca17f822;p=gostls13.git 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 --- 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