mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
ignore post-handshake CRYPTO frames
This commit is contained in:
parent
350363a796
commit
2fffad94bc
2 changed files with 12 additions and 2 deletions
|
@ -37,6 +37,9 @@ func (m *cryptoStreamManager) HandleCryptoFrame(frame *wire.CryptoFrame, encLeve
|
|||
str = m.initialStream
|
||||
case protocol.EncryptionHandshake:
|
||||
str = m.handshakeStream
|
||||
case protocol.Encryption1RTT:
|
||||
// TODO(#981): process session tickets
|
||||
return false, nil
|
||||
default:
|
||||
return false, fmt.Errorf("received CRYPTO frame with unexpected encryption level: %s", encLevel)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue