mirror of
https://github.com/golang/net.git
synced 2026-04-01 02:47:08 +09:00
I both forgot that this list could contain duplicates, and I had
forgot to run the net/http tests against CL 123615 before mailing it,
which ended up catching this bug.
The diff of this file from the commit before CL 123615 (a45b4abe^ ==
cffdcf672) to this commit is:
https://gist.github.com/bradfitz/0b7abf8fa421515aed9c4d55ce3a1994
... effectively reverting much of CL 123615 and just moving the 1xx
handling down lower.
Updates golang/go#26189 (fixes after vendor into std)
Updates golang/go#17739
Change-Id: Ib63060b0bb9721883b4b91a983b6e117994faeb9
Reviewed-on: https://go-review.googlesource.com/123675
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
This is a work-in-progress HTTP/2 implementation for Go. It will eventually live in the Go standard library and won't require any changes to your code to use. It will just be automatic. Status: * The server support is pretty good. A few things are missing but are being worked on. * The client work has just started but shares a lot of code is coming along much quicker. Docs are at https://godoc.org/golang.org/x/net/http2 Demo test server at https://http2.golang.org/ Help & bug reports welcome! Contributing: https://golang.org/doc/contribute.html Bugs: https://golang.org/issue/new?title=x/net/http2:+