mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
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:
parent
54b97a5079
commit
202dddd51e
4 changed files with 53 additions and 11 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue