tile38/vendor/golang.org/x/net/http2
tidwall cfc65a13f6 Refactor repository and build scripts
This commit includes updates that affects the build, testing, and
deployment of Tile38.

- The root level build.sh has been broken up into multiple scripts
  and placed in the "scripts" directory.

- The vendor directory has been updated to follow the Go modules
  rules, thus `make` should work on isolated environments. Also
  some vendored packages may have been updated to a later
  version, if needed.

- The Makefile has been updated to allow for making single
  binaries such as `make tile38-server`. There is some scaffolding
  during the build process, so from now on all binaries should be
  made using make. For example, to run a development version of
  the tile38-cli binary, do this:
     make tile38-cli && ./tile38-cli
  not this:
     go run cmd/tile38-cli/main.go

- Travis.CI docker push script has been updated to address a
  change to Docker's JSON repo meta output, which in turn fixes
  a bug where new Tile38 versions were not being properly pushed
  to Docker
2019-11-18 10:33:15 -07:00
..
hpack Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
.gitignore Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
Dockerfile Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
Makefile Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
README Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
ciphers.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
client_conn_pool.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
configure_transport.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
databuffer.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
errors.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
flow.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
frame.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
go16.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
go17.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
go17_not18.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
go18.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
go19.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
gotrack.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
headermap.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
http2.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
not_go16.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
not_go17.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
not_go18.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
not_go19.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
pipe.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
server.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
transport.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
write.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
writesched.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
writesched_priority.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
writesched_random.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00

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