1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
2017-07-24 19:15:25 -04:00

11 lines
244 B
Go

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
}