mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
14 lines
349 B
Go
14 lines
349 B
Go
package wire
|
|
|
|
import "github.com/refraction-networking/uquic/internal/protocol"
|
|
|
|
// AckRange is an ACK range
|
|
type AckRange struct {
|
|
Smallest protocol.PacketNumber
|
|
Largest protocol.PacketNumber
|
|
}
|
|
|
|
// Len returns the number of packets contained in this ACK range
|
|
func (r AckRange) Len() protocol.PacketNumber {
|
|
return r.Largest - r.Smallest + 1
|
|
}
|