mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
implement a buffer pool for STREAM frames
This commit is contained in:
parent
326ec9e16e
commit
5ea33cd31e
70 changed files with 193 additions and 48 deletions
|
@ -57,6 +57,7 @@ func Fuzz(data []byte) int {
|
|||
// We accept empty STREAM frames, but we don't write them.
|
||||
if sf, ok := f.(*wire.StreamFrame); ok {
|
||||
if sf.DataLen() == 0 {
|
||||
sf.PutBack()
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
@ -68,6 +69,9 @@ func Fuzz(data []byte) int {
|
|||
if f.Length(version) != protocol.ByteCount(frameLen) {
|
||||
panic(fmt.Sprintf("Inconsistent frame length for %#v: expected %d, got %d", f, frameLen, f.Length(version)))
|
||||
}
|
||||
if sf, ok := f.(*wire.StreamFrame); ok {
|
||||
sf.PutBack()
|
||||
}
|
||||
}
|
||||
if b.Len() > parsedLen {
|
||||
panic(fmt.Sprintf("Serialized length (%d) is longer than parsed length (%d)", b.Len(), parsedLen))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue