mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
10 lines
189 B
Go
10 lines
189 B
Go
package congestion
|
|
|
|
import "github.com/lucas-clemente/quic-go/protocol"
|
|
|
|
type PacketInfo struct {
|
|
Number protocol.PacketNumber
|
|
Length protocol.ByteCount
|
|
}
|
|
|
|
type PacketVector []PacketInfo
|