1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2025-01-01 00:57:32 +01:00
dnscrypt-proxy/vendor/github.com/marten-seemann/qpack
2022-07-21 18:50:10 +02:00
..
.codecov.yml Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
.gitignore Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
.gitmodules Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
.golangci.yml Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
decoder.go Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
encoder.go Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
header_field.go Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
LICENSE.md Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
README.md Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
static_table.go Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00
varint.go Add suport for DoH over HTTP/3 2022-07-21 18:50:10 +02:00

QPACK

Godoc Reference CircleCI Build Status Code Coverage

This is a minimal QPACK 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