mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
* wire: implement frame classification into probing / non-probing * wire: consolidate files * check if frame is ack eliciting and path probing in frames fuzz test
21 lines
486 B
Go
21 lines
486 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A Frame in QUIC
|
|
type Frame interface {
|
|
Append(b []byte, version protocol.Version) ([]byte, error)
|
|
Length(version protocol.Version) protocol.ByteCount
|
|
}
|
|
|
|
// IsProbingFrame returns true if the frame is a probing frame.
|
|
// See section 9.1 of RFC 9000.
|
|
func IsProbingFrame(f Frame) bool {
|
|
switch f.(type) {
|
|
case *PathChallengeFrame, *PathResponseFrame, *NewConnectionIDFrame:
|
|
return true
|
|
}
|
|
return false
|
|
}
|