mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
8 lines
209 B
Go
8 lines
209 B
Go
package ackhandler
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/wire"
|
|
|
|
type Frame struct {
|
|
wire.Frame // nil if the frame has already been acknowledged in another packet
|
|
OnLost func(wire.Frame)
|
|
}
|