enable version 33

fixes #51
This commit is contained in:
Lucas Clemente
2016-05-21 00:05:08 +02:00
parent 241c9f3a3c
commit 6f3d7f5987
3 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ type VersionNumber int
// SupportedVersions lists the versions that the server supports
var SupportedVersions = []VersionNumber{
30, 31, 32,
30, 31, 32, 33,
}
// SupportedVersionsAsTags is needed for the SHLO crypto message

View File

@@ -19,7 +19,7 @@ var _ = Describe("Version", func() {
})
It("has proper tag list", func() {
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q031Q032")))
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q031Q032Q033")))
})
It("recognizes supported versions", func() {