fix ack frame length calculation for version <32

This commit is contained in:
Lucas Clemente 2016-05-11 17:09:39 +02:00
parent d17d597ebe
commit 8b1009d482
2 changed files with 2 additions and 1 deletions

View file

@ -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)
}