sync: quic-go 0.42.0

Signed-off-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
Gaukas Wang 2024-04-23 22:34:55 -06:00
parent d40dde9b9b
commit 4973374ea5
No known key found for this signature in database
GPG key ID: 6F0DF52D710D8189
252 changed files with 13121 additions and 5437 deletions

26
testutils/frames.go Normal file
View file

@ -0,0 +1,26 @@
package testutils
import "github.com/refraction-networking/uquic/internal/wire"
type (
Frame = wire.Frame
AckFrame = wire.AckFrame
ConnectionCloseFrame = wire.ConnectionCloseFrame
CryptoFrame = wire.CryptoFrame
DataBlockedFrame = wire.DataBlockedFrame
HandshakeDoneFrame = wire.HandshakeDoneFrame
MaxDataFrame = wire.MaxDataFrame
MaxStreamDataFrame = wire.MaxStreamDataFrame
MaxStreamsFrame = wire.MaxStreamsFrame
NewConnectionIDFrame = wire.NewConnectionIDFrame
NewTokenFrame = wire.NewTokenFrame
PathChallengeFrame = wire.PathChallengeFrame
PathResponseFrame = wire.PathResponseFrame
PingFrame = wire.PingFrame
ResetStreamFrame = wire.ResetStreamFrame
RetireConnectionIDFrame = wire.RetireConnectionIDFrame
StopSendingFrame = wire.StopSendingFrame
StreamDataBlockedFrame = wire.StreamDataBlockedFrame
StreamFrame = wire.StreamFrame
StreamsBlockedFrame = wire.StreamsBlockedFrame
)