Tom Bergan 186fd3fc81 [release-branch.go1.8] http2: fix lock contention slowdown due to gracefulShutdownCh 7 years ago
..
h2demo 0dd7c8d7c3 http2/h2demo: use Let's Encrypt for the TLS cert 8 years ago
h2i e99677b929 http2/h2i: strip port from server name in client hello 7 years ago
hpack 71a035914f x/net/http2: Fix various typos in doc comments. 8 years ago
testdata 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 years ago
.gitignore 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 years ago
Dockerfile c972803da8 http2: update the curl and nghttp2 versions used in tests 9 years ago
Makefile 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 years ago
README 47990a1ba5 readme: use golang.org links rather than github.com 9 years ago
client_conn_pool.go 9f2c271364 http2: fix data race on cc.singleUse 8 years ago
configure_transport.go b3e9c8fbe0 http2: allow http scheme for http2 8 years ago
errors.go e2ba55e4e7 http2: fix Transport.RoundTrip hang on stream error before headers 8 years ago
errors_test.go 6d10a0c3ea http2: update copyright headers 9 years ago
fixed_buffer.go b7f5d985f9 http2: change the pipe and buffer code 9 years ago
fixed_buffer_test.go b7f5d985f9 http2: change the pipe and buffer code 9 years ago
flow.go 6d10a0c3ea http2: update copyright headers 9 years ago
flow_test.go 6d10a0c3ea http2: update copyright headers 9 years ago
frame.go cbed01e851 http2: log Framer reads and writes when a server test fails 8 years ago
frame_test.go e2ba55e4e7 http2: fix Transport.RoundTrip hang on stream error before headers 8 years ago
go16.go b400c2eff1 http2: add additional blacklisted ciphersuites 8 years ago
go17.go a333c534c8 http2: add Transport support for IdleConnTimeout 8 years ago
go17_not18.go 1358eff22f http2: fix all vet warnings 8 years ago
go18.go 8dab929343 http2: make Transport retry on server's GOAWAY graceful shutdown 8 years ago
go18_test.go 76c1a11e06 http2: change how Server.IdleTimeout is initialized from http.Server 8 years ago
gotrack.go 6d10a0c3ea http2: update copyright headers 9 years ago
gotrack_test.go 6c89489caf http2: reset DebugGoroutines after testing it 9 years ago
headermap.go c24de9d546 http2: add Server support for reading trailers from clients 9 years ago
http2.go c46f265c32 http2: implement support for server push 8 years ago
http2_test.go 40a0a18980 http2: fix Server race with concurrent Read/Close 8 years ago
not_go16.go b400c2eff1 http2: add additional blacklisted ciphersuites 8 years ago
not_go17.go a333c534c8 http2: add Transport support for IdleConnTimeout 8 years ago
not_go18.go 8dab929343 http2: make Transport retry on server's GOAWAY graceful shutdown 8 years ago
pipe.go 313cf39d4a http2: fix data race on pipe 8 years ago
pipe_test.go 28273ec927 http2: make Transport's Response.Body.Close not wait for buffered data 9 years ago
server.go 186fd3fc81 [release-branch.go1.8] http2: fix lock contention slowdown due to gracefulShutdownCh 7 years ago
server_push_test.go 77412025ac http2: nit in TestServer_Push_StateTransitions 7 years ago
server_test.go 3d9a20a7a1 http2: don't flush a stream's write queue in sc.resetStream 8 years ago
transport.go 69d4b8aa71 http2: remove unnecessary TODO for trailer keys allocation 7 years ago
transport_test.go b1a2d6e8c8 http2: speed up TestTransportFlowControl in short mode 8 years ago
write.go 3d9a20a7a1 http2: don't flush a stream's write queue in sc.resetStream 8 years ago
writesched.go 3d9a20a7a1 http2: don't flush a stream's write queue in sc.resetStream 8 years ago
writesched_priority.go e57319ce2b http2: don't crash when writing RST_STREAM on idle or closed streams 8 years ago
writesched_priority_test.go b7883d2965 http2: fix nits found by vet 7 years ago
writesched_random.go 4be9b97e3a http2: interface to support pluggable schedulers 8 years ago
writesched_random_test.go b7883d2965 http2: fix nits found by vet 7 years ago
writesched_test.go 00ed5e97ea http2: schedule RSTStream writes onto its stream's queue 8 years ago
z_spec_test.go 71a035914f x/net/http2: Fix various typos in doc comments. 8 years ago

README

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:+