drop support for gQUIC

This commit is contained in:
Marten Seemann 2018-10-24 09:34:44 +07:00
parent 8f8ed03254
commit 3266e36811
195 changed files with 2638 additions and 35430 deletions

View file

@ -2,7 +2,6 @@ package quic
import (
"github.com/golang/mock/gomock"
"github.com/lucas-clemente/quic-go/internal/protocol"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -14,18 +13,8 @@ func TestQuicGo(t *testing.T) {
RunSpecs(t, "QUIC Suite")
}
const (
versionGQUICFrames = protocol.Version39
versionIETFFrames = protocol.VersionTLS
)
var mockCtrl *gomock.Controller
var _ = BeforeSuite(func() {
Expect(versionGQUICFrames.UsesIETFFrameFormat()).To(BeFalse())
Expect(versionIETFFrames.UsesIETFFrameFormat()).To(BeTrue())
})
var _ = BeforeEach(func() {
mockCtrl = gomock.NewController(GinkgoT())
})