| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| hpack/ | 03-May-2024 | - | 1,431 | 1,040 | ||
| .gitignore | D | 03-May-2024 | 11 | 3 | 2 | |
| Dockerfile | D | 03-May-2024 | 1.5 KiB | 52 | 42 | |
| Makefile | D | 03-May-2024 | 44 | 4 | 2 | |
| README | D | 03-May-2024 | 626 | 21 | 13 | |
| ciphers.go | D | 03-May-2024 | 34.4 KiB | 642 | 612 | |
| client_conn_pool.go | D | 03-May-2024 | 6.4 KiB | 257 | 194 | |
| configure_transport.go | D | 03-May-2024 | 2.2 KiB | 81 | 61 | |
| databuffer.go | D | 03-May-2024 | 3.9 KiB | 147 | 108 | |
| errors.go | D | 03-May-2024 | 4.1 KiB | 134 | 89 | |
| flow.go | D | 03-May-2024 | 1.1 KiB | 51 | 30 | |
| frame.go | D | 03-May-2024 | 43.9 KiB | 1,580 | 1,087 | |
| go16.go | D | 03-May-2024 | 331 | 17 | 8 | |
| go17.go | D | 03-May-2024 | 2.5 KiB | 107 | 81 | |
| go17_not18.go | D | 03-May-2024 | 1.3 KiB | 37 | 27 | |
| go18.go | D | 03-May-2024 | 1.3 KiB | 57 | 40 | |
| go19.go | D | 03-May-2024 | 347 | 17 | 8 | |
| gotrack.go | D | 03-May-2024 | 3.1 KiB | 171 | 134 | |
| headermap.go | D | 03-May-2024 | 1.4 KiB | 79 | 70 | |
| http2.go | D | 03-May-2024 | 9.6 KiB | 392 | 247 | |
| not_go16.go | D | 03-May-2024 | 412 | 22 | 11 | |
| not_go17.go | D | 03-May-2024 | 2.4 KiB | 88 | 64 | |
| not_go18.go | D | 03-May-2024 | 632 | 30 | 16 | |
| not_go19.go | D | 03-May-2024 | 325 | 17 | 7 | |
| pipe.go | D | 03-May-2024 | 3.8 KiB | 164 | 120 | |
| server.go | D | 03-May-2024 | 87.8 KiB | 2,866 | 1,994 | |
| transport.go | D | 03-May-2024 | 64 KiB | 2,311 | 1,745 | |
| write.go | D | 03-May-2024 | 10.5 KiB | 366 | 244 | |
| writesched.go | D | 03-May-2024 | 7.2 KiB | 243 | 144 | |
| writesched_priority.go | D | 03-May-2024 | 13.5 KiB | 453 | 306 | |
| writesched_random.go | D | 03-May-2024 | 1.9 KiB | 73 | 46 |
README
1This is a work-in-progress HTTP/2 implementation for Go. 2 3It will eventually live in the Go standard library and won't require 4any changes to your code to use. It will just be automatic. 5 6Status: 7 8* The server support is pretty good. A few things are missing 9 but are being worked on. 10* The client work has just started but shares a lot of code 11 is coming along much quicker. 12 13Docs are at https://godoc.org/golang.org/x/net/http2 14 15Demo test server at https://http2.golang.org/ 16 17Help & bug reports welcome! 18 19Contributing: https://golang.org/doc/contribute.html 20Bugs: https://golang.org/issue/new?title=x/net/http2:+ 21