remove version 32 from SupportedVersions

This commit is contained in:
Marten Seemann 2016-07-31 15:02:44 +07:00 committed by Lucas Clemente
parent 69302be280
commit ad91d02cbd
4 changed files with 6 additions and 5 deletions

View file

@ -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))