Source File
frame.go
Belonging Package
github.com/quic-go/quic-go/internal/wire
package wireimport ()// A Frame in QUICtype 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 ( Frame) bool {switch .(type) {case *PathChallengeFrame, *PathResponseFrame, *NewConnectionIDFrame:return true}return false}// IsProbingFrameType returns true if the FrameType is a probing frame.// See section 9.1 of RFC 9000.func ( FrameType) bool {//nolint:exhaustive // PATH_CHALLENGE, PATH_RESPONSE and NEW_CONNECTION_ID are the only probing framesswitch {case FrameTypePathChallenge, FrameTypePathResponse, FrameTypeNewConnectionID:return truedefault:return false}}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |