github.com/tumi8/quic-go@v0.37.4-tum/noninternal/wire/ack_range.go (about)

     1  package wire
     2  
     3  import "github.com/tumi8/quic-go/noninternal/protocol"
     4  
     5  // AckRange is an ACK range
     6  type AckRange struct {
     7  	Smallest protocol.PacketNumber
     8  	Largest  protocol.PacketNumber
     9  }
    10  
    11  // Len returns the number of packets contained in this ACK range
    12  func (r AckRange) Len() protocol.PacketNumber {
    13  	return r.Largest - r.Smallest + 1
    14  }