From: smasher164 Date: Tue, 5 May 2020 19:30:22 +0000 (-0400) Subject: net/http: update link to chrome documentation on connection management X-Git-Tag: go1.15beta1~227 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0e617d3d5c7e89b1ad1b0285fc77314b8d056211;p=gostls13.git net/http: update link to chrome documentation on connection management The previous link at https://insouciant.org/tech/connection-management-in-chromium/ is no longer accessible. This CL changes it to https://www.chromium.org/developers/design-documents/network-stack#TOC-Connection-Management. Fixes #38885. Change-Id: I0881e72fe0c099294ab137b5e2d0c3f5763978f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/232357 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/transport.go b/src/net/http/transport.go index 0c1dd1a021..b1705d5439 100644 --- a/src/net/http/transport.go +++ b/src/net/http/transport.go @@ -843,7 +843,7 @@ func (t *Transport) tryPutIdleConn(pconn *persistConn) error { // Deliver pconn to goroutine waiting for idle connection, if any. // (They may be actively dialing, but this conn is ready first. // Chrome calls this socket late binding. - // See https://insouciant.org/tech/connection-management-in-chromium/.) + // See https://www.chromium.org/developers/design-documents/network-stack#TOC-Connection-Management.) key := pconn.cacheKey if q, ok := t.idleConnWait[key]; ok { done := false