mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
9 lines
228 B
Go
9 lines
228 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)
|
|
OnAcked func()
|
|
}
|