0babdad17b
* chore: upgrade go-waku to v0.5 * chore: add println and logs to check what's being stored in the enr, and preemptively delete the multiaddr field (#3219) * feat: add wakuv2 test (#3218) |
||
---|---|---|
.. | ||
.codecov.yml | ||
.gitignore | ||
.gitmodules | ||
.golangci.yml | ||
LICENSE.md | ||
README.md | ||
decoder.go | ||
encoder.go | ||
header_field.go | ||
static_table.go | ||
tools.go | ||
varint.go |
README.md
QPACK
This is a minimal QPACK (RFC 9204) implementation in Go. It is minimal in the sense that it doesn't use the dynamic table at all, but just the static table and (Huffman encoded) string literals. Wherever possible, it reuses code from the HPACK implementation in the Go standard library.
It should be able to interoperate with other QPACK implemetations (both encoders and decoders), however it won't achieve a high compression efficiency.
Running the interop tests
Install the QPACK interop files by running
git submodule update --init --recursive
Then run the tests:
ginkgo -r integrationtests