mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-10 23:40:06 -05:00
9 lines
187 B
Go
9 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
|
|
}
|