mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
17 lines
453 B
Go
17 lines
453 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// A Frame in QUIC
|
|
type Frame interface {
|
|
Append(b []byte, version protocol.VersionNumber) ([]byte, error)
|
|
Length(version protocol.VersionNumber) protocol.ByteCount
|
|
}
|
|
|
|
// A FrameParser parses QUIC frames, one by one.
|
|
type FrameParser interface {
|
|
ParseNext([]byte, protocol.EncryptionLevel, protocol.VersionNumber) (int, Frame, error)
|
|
SetAckDelayExponent(uint8)
|
|
}
|