make utils an internal package

This commit is contained in:
Marten Seemann
2017-06-07 13:07:53 +02:00
parent 24d9ed2769
commit c0b09c8646
74 changed files with 51 additions and 52 deletions

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
}