-
Notifications
You must be signed in to change notification settings - Fork 17.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a field to Server and Transport containing HTTP/2 configuration parameters. This field will have no effect until golang.org/x/net/http2 is updated to make use of it, and h2_bundle.go is updated with the new http2 package. For #67813 Change-Id: I81d7f8e9ddea78f9666383983aec43e3884c13ed Reviewed-on: https://go-review.googlesource.com/c/go/+/602175 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jonathan Amsterdam <jba@google.com>
- Loading branch information
Showing
6 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
pkg net/http, type HTTP2Config struct #67813 | ||
pkg net/http, type HTTP2Config struct, CountError func(string) #67813 | ||
pkg net/http, type HTTP2Config struct, MaxConcurrentStreams int #67813 | ||
pkg net/http, type HTTP2Config struct, MaxDecoderHeaderTableSize int #67813 | ||
pkg net/http, type HTTP2Config struct, MaxEncoderHeaderTableSize int #67813 | ||
pkg net/http, type HTTP2Config struct, MaxReadFrameSize int #67813 | ||
pkg net/http, type HTTP2Config struct, MaxReceiveBufferPerConnection int #67813 | ||
pkg net/http, type HTTP2Config struct, MaxReceiveBufferPerStream int #67813 | ||
pkg net/http, type HTTP2Config struct, PermitProhibitedCipherSuites bool #67813 | ||
pkg net/http, type HTTP2Config struct, PingTimeout time.Duration #67813 | ||
pkg net/http, type HTTP2Config struct, SendPingTimeout time.Duration #67813 | ||
pkg net/http, type HTTP2Config struct, WriteByteTimeout time.Duration #67813 | ||
pkg net/http, type Server struct, HTTP2 *HTTP2Config #67813 | ||
pkg net/http, type Transport struct, HTTP2 *HTTP2Config #67813 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[Transport] and [Server] now have an HTTP2 field which permits | ||
configuring HTTP/2 protocol settings. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters