mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
handle the crypto stream separately
This commit is contained in:
parent
9825ddb43a
commit
5ee7b205c6
7 changed files with 66 additions and 74 deletions
|
@ -61,11 +61,8 @@ var _ = Describe("Packet packer", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
cryptoStream = &stream{flowController: flowcontrol.NewStreamFlowController(1, false, flowcontrol.NewConnectionFlowController(1000, 1000, nil), 1000, 1000, 1000, nil)}
|
||||
|
||||
streamsMap := newStreamsMap(nil, protocol.PerspectiveServer)
|
||||
streamsMap.streams[1] = cryptoStream
|
||||
streamsMap.openStreams = []protocol.StreamID{1}
|
||||
streamFramer = newStreamFramer(streamsMap, nil)
|
||||
streamFramer = newStreamFramer(cryptoStream, streamsMap, nil)
|
||||
|
||||
packer = &packetPacker{
|
||||
cryptoSetup: &mockCryptoSetup{encLevelSeal: protocol.EncryptionForwardSecure},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue