mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
drop support for QUIC draft version 32 and 34
This commit is contained in:
parent
fa2e797215
commit
f51cc93770
12 changed files with 23 additions and 51 deletions
|
@ -55,7 +55,7 @@ var _ = Describe("Client", func() {
|
|||
|
||||
It("rejects quic.Configs that allow multiple QUIC versions", func() {
|
||||
qconf := &quic.Config{
|
||||
Versions: []quic.VersionNumber{protocol.VersionDraft29, protocol.VersionDraft32},
|
||||
Versions: []quic.VersionNumber{protocol.VersionDraft29, protocol.Version1},
|
||||
}
|
||||
_, err := newClient("localhost:1337", nil, &roundTripperOpts{}, qconf, nil)
|
||||
Expect(err).To(MatchError("can only use a single QUIC version for dialing a HTTP/3 connection"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue