mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
21 lines
441 B
Go
21 lines
441 B
Go
package ackhandler
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/wire"
|
|
)
|
|
|
|
// FrameHandler handles the acknowledgement and the loss of a frame.
|
|
type FrameHandler interface {
|
|
OnAcked(wire.Frame)
|
|
OnLost(wire.Frame)
|
|
}
|
|
|
|
type Frame struct {
|
|
Frame wire.Frame // nil if the frame has already been acknowledged in another packet
|
|
Handler FrameHandler
|
|
}
|
|
|
|
type StreamFrame struct {
|
|
Frame *wire.StreamFrame
|
|
Handler FrameHandler
|
|
}
|