-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support non-zero lowest frame offset
The lowest offset of CRYPTO frames in a QUIC packet does not necessarily start at zero, such as the second packet of a connection using Kyber key in the client hello. Also updates clienthellod to new repo.
- Loading branch information
Showing
6 changed files
with
71 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,35 @@ | ||
module github.com/refraction-networking/uquic | ||
|
||
go 1.21 | ||
go 1.21.0 | ||
|
||
require ( | ||
github.com/francoispqt/gojay v1.2.13 | ||
github.com/gaukas/clienthellod v0.4.2 | ||
github.com/onsi/ginkgo/v2 v2.17.2 | ||
github.com/onsi/gomega v1.33.1 | ||
github.com/quic-go/qpack v0.4.0 | ||
github.com/refraction-networking/clienthellod v0.5.0-alpha2 | ||
github.com/refraction-networking/utls v1.6.6 | ||
go.uber.org/mock v0.4.0 | ||
golang.org/x/crypto v0.22.0 | ||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f | ||
golang.org/x/net v0.24.0 | ||
golang.org/x/crypto v0.23.0 | ||
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 | ||
golang.org/x/net v0.25.0 | ||
golang.org/x/sync v0.7.0 | ||
golang.org/x/sys v0.19.0 | ||
golang.org/x/sys v0.20.0 | ||
golang.org/x/time v0.5.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/cloudflare/circl v1.3.8 // indirect | ||
github.com/gaukas/godicttls v0.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gopacket v1.1.19 // indirect | ||
github.com/google/pprof v0.0.0-20240430035430-e4905b036c4e // indirect | ||
github.com/klauspost/compress v1.17.8 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.21.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters