]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: remove some TODOs
authorBrad Fitzpatrick <bradfitz@golang.org>
Mon, 2 May 2016 16:07:18 +0000 (16:07 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Mon, 2 May 2016 16:20:12 +0000 (16:20 +0000)
Change-Id: Iaf200ba9a308bc8f511eec4a70dbeb014bf5fdc3
Reviewed-on: https://go-review.googlesource.com/22690
Reviewed-by: Andrew Gerrand <adg@golang.org>
src/net/http/transport.go

index c8bb34fa486dfc391a1c3716607e1cf3ab21f008..032d8af4a1bcdb21e23453bf674c11ea6e4a0dd0 100644 (file)
@@ -181,8 +181,6 @@ type Transport struct {
        nextProtoOnce sync.Once
        h2transport   *http2Transport // non-nil if http2 wired up
 
-       // TODO: MaxIdleConns tunable for global max cached connections (Issue 15461)
-       // TODO: tunable on timeout on cached connections (and advertise with Keep-Alive header?)
        // TODO: tunable on max per-host TCP dials in flight (Issue 13957)
 }