Нет описания

Brad Fitzpatrick f64ceef66c Add a POST benchmark. Notably to show all the garbage from the body buffer. 11 лет назад
h2demo a9672f2ddf Fix Chrome help text 11 лет назад
hpack 0d869c5287 Fix documentation for SetMaxDynamicTableSize of Encoder 11 лет назад
testdata 1c864e5f85 spec coverage report 11 лет назад
.gitignore 2fa3df86cd Update LICENSE 11 лет назад
AUTHORS 784ac63e5b add Daniel to C+A 11 лет назад
CONTRIBUTORS 784ac63e5b add Daniel to C+A 11 лет назад
Dockerfile a58a8de1f7 add more Dockerfile comments 11 лет назад
HACKING 0af8798ae9 Add HACKING file 11 лет назад
LICENSE 2fa3df86cd Update LICENSE 11 лет назад
Makefile 0fe8c920c6 Add a Docker image with curl supporting http2 11 лет назад
README 0d51c7113d fix bug thinko 11 лет назад
buffer.go 50b8ccc4e8 buffered pipe 11 лет назад
buffer_test.go 50b8ccc4e8 buffered pipe 11 лет назад
errors.go bd39196e5c CloseNotifier support and associated tests and discovered bugs & fixes 11 лет назад
errors_test.go b0b6955472 Add HTTP_1_1_REQUIRED error code. 11 лет назад
flow.go 2b45947877 Move handler writing flow control to serve goroutine's frame scheduler. 11 лет назад
flow_test.go 2b45947877 Move handler writing flow control to serve goroutine's frame scheduler. 11 лет назад
frame.go 2b445ee680 Add more docs to the FrameHeader type and UnknownFrame.Payload 11 лет назад
frame_test.go 64b29183e7 Add a test to catch that nobody rearranges fields in FrameHeader 11 лет назад
gotrack.go 79903f0a86 typo 11 лет назад
gotrack_test.go 6fe7631778 Debug-only runtime tracking of funcs running on correct goroutines. 11 лет назад
headermap.go 6520e26846 Add cache of common HTTP headers mapped between lower and canonical case. 11 лет назад
http2.go 2b45947877 Move handler writing flow control to serve goroutine's frame scheduler. 11 лет назад
http2_test.go 741cd6dd99 Start of a server benchmark. Also, make serverTester less allocation-heavy. 11 лет назад
pipe.go 50b8ccc4e8 buffered pipe 11 лет назад
pipe_test.go 50b8ccc4e8 buffered pipe 11 лет назад
server.go 5df015f2d6 Enforce cipher suites. 11 лет назад
server_test.go f64ceef66c Add a POST benchmark. Notably to show all the garbage from the body buffer. 11 лет назад
write.go c8bab6aad6 Move server's WINDOW_UPDATE sending logic into the serve loop. 11 лет назад
writesched.go 5b95eb395f Forget pending frames when stream is closed (e.g. RST) 11 лет назад
z_spec_test.go 57999e3998 Load the spec coverage in tests lazily. 11 лет назад

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 hasn't yet begun, but will share a lot of code.

Docs are at https://godoc.org/github.com/bradfitz/http2

Demo test server at https://http2.golang.org/

Help & bug reports welcome.