mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use stream 0 for the crypto stream when using TLS
This commit is contained in:
parent
05f6e1cf8e
commit
f662822486
16 changed files with 93 additions and 59 deletions
|
@ -60,7 +60,7 @@ func (f *streamFramer) PopCryptoStreamFrame(maxLen protocol.ByteCount) *wire.Str
|
|||
return nil
|
||||
}
|
||||
frame := &wire.StreamFrame{
|
||||
StreamID: 1,
|
||||
StreamID: f.cryptoStream.StreamID(),
|
||||
Offset: f.cryptoStream.GetWriteOffset(),
|
||||
}
|
||||
frameHeaderBytes, _ := frame.MinLength(protocol.VersionWhatever) // can never error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue