mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
This replaces version.UsesMaxDataFrame by versoin.UsesIETFFrameFormat. That way, we can have two separate code paths in the unpacker to unpack either gQUIC frames or IETF frames.
29 lines
783 B
Go
29 lines
783 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestCrypto(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Wire Suite")
|
|
}
|
|
|
|
const (
|
|
// a QUIC version that uses big endian encoding
|
|
versionBigEndian = protocol.Version39
|
|
// a QUIC version that uses the IETF frame types
|
|
versionIETFFrames = protocol.VersionTLS
|
|
)
|
|
|
|
var _ = BeforeSuite(func() {
|
|
Expect(utils.GetByteOrder(versionBigEndian)).To(Equal(utils.BigEndian))
|
|
Expect(utils.GetByteOrder(versionIETFFrames)).To(Equal(utils.BigEndian))
|
|
Expect(versionBigEndian.UsesIETFFrameFormat()).To(BeFalse())
|
|
Expect(versionIETFFrames.UsesIETFFrameFormat()).To(BeTrue())
|
|
})
|