dnscrypt-proxy/vendor/github.com/quic-go/qpack
2024-09-10 23:28:24 +02:00
..
.codecov.yml Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
.gitignore Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
.gitmodules Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
.golangci.yml Update deps 2024-09-10 23:28:24 +02:00
decoder.go Update deps 2024-09-10 23:28:24 +02:00
encoder.go Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
header_field.go Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
LICENSE.md Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
README.md Update deps 2024-09-10 23:28:24 +02:00
static_table.go Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00
varint.go Update quic-go dependency to support go 1.20 (#2292) 2023-02-02 12:42:11 +01:00

QPACK

PkgGoDev Code Coverage Fuzzing Status

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 is interoperable with other QPACK implementations (both encoders and decoders), however it won't achieve a high compression efficiency. If you're interested in dynamic table support, please comment on the issue.

Running the Interop Tests

Install the QPACK interop files by running

git submodule update --init --recursive

Then run the tests:

go test -v ./integrationtests/interop/