make quic-go build with both Go 1.13 and 1.14

This commit is contained in:
Marten Seemann 2020-04-08 15:33:13 +07:00
parent 8e76881bc4
commit 3ac2fb3161
15 changed files with 236 additions and 159 deletions

View file

@ -7,7 +7,6 @@ import (
"fmt"
"github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/marten-seemann/qtls"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -17,7 +16,7 @@ var _ = Describe("Long Header AEAD", func() {
for i := range cipherSuites {
cs := cipherSuites[i]
Context(fmt.Sprintf("using %s", qtls.CipherSuiteName(cs.ID)), func() {
Context(fmt.Sprintf("using %s", cipherSuiteName(cs.ID)), func() {
getSealerAndOpener := func() (LongHeaderSealer, LongHeaderOpener) {
key := make([]byte, 16)
hpKey := make([]byte, 16)