mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 22:57:37 +03:00
Update deps
This commit is contained in:
parent
7447fc4a0e
commit
f8293f56a9
57 changed files with 16943 additions and 4295 deletions
8
vendor/github.com/quic-go/qpack/.golangci.yml
generated
vendored
8
vendor/github.com/quic-go/qpack/.golangci.yml
generated
vendored
|
@ -4,24 +4,20 @@ linters:
|
|||
disable-all: true
|
||||
enable:
|
||||
- asciicheck
|
||||
- deadcode
|
||||
- copyloopvar
|
||||
- exhaustive
|
||||
- exportloopref
|
||||
- goconst
|
||||
- gofmt # redundant, since gofmt *should* be a no-op after gofumpt
|
||||
- gofumpt
|
||||
- goimports
|
||||
- gosimple
|
||||
- govet
|
||||
- ineffassign
|
||||
- misspell
|
||||
- prealloc
|
||||
- scopelint
|
||||
- staticcheck
|
||||
- stylecheck
|
||||
- structcheck
|
||||
- unconvert
|
||||
- unparam
|
||||
- unused
|
||||
- varcheck
|
||||
- vet
|
||||
|
||||
|
|
11
vendor/github.com/quic-go/qpack/README.md
generated
vendored
11
vendor/github.com/quic-go/qpack/README.md
generated
vendored
|
@ -1,13 +1,14 @@
|
|||
# QPACK
|
||||
|
||||
[](https://godoc.org/github.com/marten-seemann/qpack)
|
||||
[](https://codecov.io/gh/marten-seemann/qpack)
|
||||
[](https://pkg.go.dev/github.com/quic-go/qpack)
|
||||
[](https://codecov.io/gh/quic-go/qpack)
|
||||
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:quic-go)
|
||||
|
||||
This is a minimal QPACK ([RFC 9204](https://datatracker.ietf.org/doc/html/rfc9204)) 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](https://github.com/golang/net/tree/master/http2/hpack).
|
||||
|
||||
It should be able to interoperate with other QPACK implemetations (both encoders and decoders), however it won't achieve a high compression efficiency.
|
||||
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](https://github.com/quic-go/qpack/issues/33).
|
||||
|
||||
## Running the interop tests
|
||||
## Running the Interop Tests
|
||||
|
||||
Install the [QPACK interop files](https://github.com/qpackers/qifs/) by running
|
||||
```bash
|
||||
|
@ -16,5 +17,5 @@ git submodule update --init --recursive
|
|||
|
||||
Then run the tests:
|
||||
```bash
|
||||
ginkgo -r integrationtests
|
||||
go test -v ./integrationtests/interop/
|
||||
```
|
||||
|
|
6
vendor/github.com/quic-go/qpack/decoder.go
generated
vendored
6
vendor/github.com/quic-go/qpack/decoder.go
generated
vendored
|
@ -196,9 +196,13 @@ func (d *Decoder) parseIndexedHeaderField() error {
|
|||
|
||||
func (d *Decoder) parseLiteralHeaderField() error {
|
||||
buf := d.buf
|
||||
if buf[0]&0x20 > 0 || buf[0]&0x10 == 0 {
|
||||
if buf[0]&0x10 == 0 {
|
||||
return errNoDynamicTable
|
||||
}
|
||||
// We don't need to check the value of the N-bit here.
|
||||
// It's only relevant when re-encoding header fields,
|
||||
// and determines whether the header field can be added to the dynamic table.
|
||||
// Since we don't support the dynamic table, we can ignore it.
|
||||
index, buf, err := readVarInt(4, buf)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
5
vendor/github.com/quic-go/qpack/tools.go
generated
vendored
5
vendor/github.com/quic-go/qpack/tools.go
generated
vendored
|
@ -1,5 +0,0 @@
|
|||
//go:build tools
|
||||
|
||||
package qpack
|
||||
|
||||
import _ "github.com/onsi/ginkgo/v2/ginkgo"
|
Loading…
Add table
Add a link
Reference in a new issue