x/net/http2: The starting streamid for client should be 3 instead of 1 when AllowHTTP is set. #25230
Labels
Milestone
Comments
Sounds fine to start at 3 instead of 1 iff AllowHTTP is true. Somebody want to send a change? |
I can do this. |
Change https://golang.org/cl/111835 mentions this issue: |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?1.10
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?W64
transport.go line 537:
nextStreamID: 1,
as http2-spec stated in https://http2.github.io/http2-spec/#discover-http
and https://http2.github.io/http2-spec/#StreamIdentifiers
The next stream ID for h2c should therefore starts from 3
The text was updated successfully, but these errors were encountered: