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
|
@ -72,8 +72,8 @@ var _ = Describe("Initial AEAD using AES-GCM", func() {
|
|||
})
|
||||
|
||||
// values taken from the Appendix of the draft
|
||||
Context("using the test vector from the QUIC draft, for QUIC draft-34", func() {
|
||||
const version = protocol.VersionDraft34
|
||||
Context("using the test vector from the QUIC draft, for QUIC v1", func() {
|
||||
const version = protocol.Version1
|
||||
var connID protocol.ConnectionID
|
||||
|
||||
BeforeEach(func() {
|
||||
|
@ -125,7 +125,7 @@ var _ = Describe("Initial AEAD using AES-GCM", func() {
|
|||
})
|
||||
})
|
||||
|
||||
for _, ver := range []protocol.VersionNumber{protocol.VersionDraft32, protocol.VersionDraft34} {
|
||||
for _, ver := range []protocol.VersionNumber{protocol.VersionDraft29, protocol.Version1} {
|
||||
v := ver
|
||||
|
||||
Context(fmt.Sprintf("using version %s", v), func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue