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

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