mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
fix ack frame length calculation for version <32
This commit is contained in:
parent
d17d597ebe
commit
8b1009d482
2 changed files with 2 additions and 1 deletions
|
@ -99,6 +99,7 @@ func (f *AckFrame) MinLength() protocol.ByteCount {
|
|||
l += (1 + 2) * 0 /* TODO: num_timestamps */
|
||||
if f.HasNACK() {
|
||||
l += 1 + (6+1)*len(f.NackRanges)
|
||||
l++ // TODO: Remove once we drop support for <32
|
||||
}
|
||||
return protocol.ByteCount(l)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue