mirror of
https://github.com/caddyserver/caddy.git
synced 2025-11-24 07:23:19 -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
|
|
}
|