implement packet history to efficiently calculate ACK ranges

ref #190
This commit is contained in:
Marten Seemann 2016-06-27 15:10:41 +07:00
parent 5e8c6e59f6
commit 30449870e4
5 changed files with 408 additions and 2 deletions

10
utils/packet_interval.go Normal file
View file

@ -0,0 +1,10 @@
package utils
import "github.com/lucas-clemente/quic-go/protocol"
// PacketInterval is an interval from one PacketNumber to the other
// +gen linkedlist
type PacketInterval struct {
Start protocol.PacketNumber
End protocol.PacketNumber
}