forked from quic-go/quic-go
drop support for QUIC 37 and 38
This commit is contained in:
@@ -7,12 +7,8 @@ import (
|
||||
)
|
||||
|
||||
var _ = Describe("Byte Order", func() {
|
||||
It("says little Little Endian before QUIC 39", func() {
|
||||
Expect(GetByteOrder(protocol.Version37)).To(Equal(LittleEndian))
|
||||
Expect(GetByteOrder(protocol.Version38)).To(Equal(LittleEndian))
|
||||
})
|
||||
|
||||
It("says little Little Endian for QUIC 39", func() {
|
||||
It("says little Little Endian for QUIC 39 and TLS", func() {
|
||||
Expect(GetByteOrder(protocol.Version39)).To(Equal(BigEndian))
|
||||
Expect(GetByteOrder(protocol.VersionTLS)).To(Equal(BigEndian))
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user