mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
only write headers with a length that fits into 2 bytes in fuzz test
This commit is contained in:
parent
287a324acf
commit
f0aa336e09
1 changed files with 5 additions and 0 deletions
|
@ -48,6 +48,11 @@ func Fuzz(data []byte) int {
|
|||
return 0
|
||||
}
|
||||
}
|
||||
// We always use a 2-byte encoding for the Length field in Long Header packets.
|
||||
// Serializing the header will fail when using a higher value.
|
||||
if hdr.IsLongHeader && hdr.Length > 16383 {
|
||||
return 1
|
||||
}
|
||||
b := &bytes.Buffer{}
|
||||
if err := extHdr.Write(b, version); err != nil {
|
||||
// We are able to parse packets with connection IDs longer than 20 bytes,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue