mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove version 32 from SupportedVersions
This commit is contained in:
parent
69302be280
commit
ad91d02cbd
4 changed files with 6 additions and 5 deletions
|
@ -73,7 +73,8 @@ var _ = Describe("Server", func() {
|
|||
})
|
||||
|
||||
It("closes and deletes sessions", func() {
|
||||
pheader := []byte{0x09, 0xf6, 0x19, 0x86, 0x66, 0x9b, 0x9f, 0xfa, 0x4c, 0x51, 0x30, 0x33, 0x32, 0x01}
|
||||
version := 0x34
|
||||
pheader := []byte{0x09, 0xf6, 0x19, 0x86, 0x66, 0x9b, 0x9f, 0xfa, 0x4c, 0x51, 0x30, 0x33, byte(version), 0x01}
|
||||
err := server.handlePacket(nil, nil, append(pheader, (&crypto.NullAEAD{}).Seal(nil, nil, 0, pheader)...))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(server.sessions).To(HaveLen(1))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue