mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-06 22:40:31 -05:00
10 lines
187 B
Go
10 lines
187 B
Go
|
package wire
|
||
|
|
||
|
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
||
|
|
||
|
// AckRange is an ACK range
|
||
|
type AckRange struct {
|
||
|
First protocol.PacketNumber
|
||
|
Last protocol.PacketNumber
|
||
|
}
|