implement sending of truncated ConnectionIDs

This commit is contained in:
Marten Seemann 2016-05-06 21:53:21 +07:00
parent 965addac79
commit bb807fa5bd
8 changed files with 81 additions and 21 deletions

View file

@ -5,6 +5,7 @@ import (
"github.com/lucas-clemente/quic-go/crypto"
"github.com/lucas-clemente/quic-go/frames"
"github.com/lucas-clemente/quic-go/handshake"
"github.com/lucas-clemente/quic-go/protocol"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -17,7 +18,7 @@ var _ = Describe("Packet packer", func() {
BeforeEach(func() {
aead := &crypto.NullAEAD{}
packer = &packetPacker{aead: aead}
packer = &packetPacker{aead: aead, connectionParametersManager: handshake.NewConnectionParamatersManager()}
})
It("returns nil when no packet is queued", func() {