mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
14 lines
337 B
Go
14 lines
337 B
Go
package wire
|
|
|
|
import "github.com/quic-go/quic-go/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
|
|
}
|