wire: implement frame classification into probing / non-probing (#4901)

* wire: implement frame classification into probing / non-probing

* wire: consolidate files

* check if frame is ack eliciting and path probing in frames fuzz test
This commit is contained in:
Marten Seemann 2025-01-20 22:26:04 -08:00 committed by GitHub
parent 54b97a5079
commit 202dddd51e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 53 additions and 11 deletions

View file

@ -3,6 +3,7 @@ package frames
import (
"fmt"
"github.com/quic-go/quic-go/internal/ackhandler"
"github.com/quic-go/quic-go/internal/protocol"
"github.com/quic-go/quic-go/internal/wire"
)
@ -49,6 +50,8 @@ func Fuzz(data []byte) int {
if f == nil { // PADDING frame
continue
}
wire.IsProbingFrame(f)
ackhandler.IsFrameAckEliciting(f)
// We accept empty STREAM frames, but we don't write them.
if sf, ok := f.(*wire.StreamFrame); ok {
if sf.DataLen() == 0 {