add an OnAcked callback to ackhandler.Frames

This commit is contained in:
Marten Seemann 2019-08-30 13:31:20 +07:00
parent 0edb3f2b93
commit 3525a51ada
3 changed files with 21 additions and 2 deletions

View file

@ -5,4 +5,5 @@ 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()
}