mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
There are two checks that need to be performed: 1. the crypto stream must not have any more data queued for reading 2. when receiving CRYPTO frames for that crypto stream afterwards, they must not exceed the highest offset received on that stream
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package quic
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
)
|
|
|
|
type cryptoDataHandler interface {
|
|
HandleMessage([]byte, protocol.EncryptionLevel) bool
|
|
}
|
|
|
|
type cryptoStreamManager struct {
|
|
cryptoHandler cryptoDataHandler
|
|
|
|
initialStream cryptoStream
|
|
handshakeStream cryptoStream
|
|
}
|
|
|
|
func newCryptoStreamManager(
|
|
cryptoHandler cryptoDataHandler,
|
|
initialStream cryptoStream,
|
|
handshakeStream cryptoStream,
|
|
) *cryptoStreamManager {
|
|
return &cryptoStreamManager{
|
|
cryptoHandler: cryptoHandler,
|
|
initialStream: initialStream,
|
|
handshakeStream: handshakeStream,
|
|
}
|
|
}
|
|
|
|
func (m *cryptoStreamManager) HandleCryptoFrame(frame *wire.CryptoFrame, encLevel protocol.EncryptionLevel) error {
|
|
var str cryptoStream
|
|
switch encLevel {
|
|
case protocol.EncryptionInitial:
|
|
str = m.initialStream
|
|
case protocol.EncryptionHandshake:
|
|
str = m.handshakeStream
|
|
default:
|
|
return fmt.Errorf("received CRYPTO frame with unexpected encryption level: %s", encLevel)
|
|
}
|
|
if err := str.HandleCryptoFrame(frame); err != nil {
|
|
return err
|
|
}
|
|
for {
|
|
data := str.GetCryptoData()
|
|
if data == nil {
|
|
return nil
|
|
}
|
|
if encLevelFinished := m.cryptoHandler.HandleMessage(data, encLevel); encLevelFinished {
|
|
return str.Finish()
|
|
}
|
|
}
|
|
}
|