mirror of
https://github.com/caddyserver/caddy.git
synced 2025-06-23 15:31:40 -04: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
|
|
}
|