mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
use ByteCount type for Frame, Packet and PublicHeader lengths
This commit is contained in:
parent
174095d5aa
commit
e345270e84
19 changed files with 53 additions and 53 deletions
|
@ -94,13 +94,13 @@ func (f *AckFrame) Write(b *bytes.Buffer, packetNumber protocol.PacketNumber, pa
|
|||
}
|
||||
|
||||
// MinLength of a written frame
|
||||
func (f *AckFrame) MinLength() int {
|
||||
func (f *AckFrame) MinLength() protocol.ByteCount {
|
||||
l := 1 + 1 + 6 + 2 + 1 + 1 + 4
|
||||
l += (1 + 2) * 0 /* TODO: num_timestamps */
|
||||
if f.HasNACK() {
|
||||
l += 1 + (6+1)*len(f.NackRanges)
|
||||
}
|
||||
return l
|
||||
return protocol.ByteCount(l)
|
||||
}
|
||||
|
||||
// HasNACK returns if the frame has NACK ranges
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue