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

@ -444,6 +444,11 @@ func (h *sentPacketHandler) onPacketAcked(p *Packet, rcvTime time.Time) error {
return nil
}
for _, f := range p.Frames {
if f.OnAcked != nil {
f.OnAcked()
}
}
if p.includedInBytesInFlight {
h.bytesInFlight -= p.Length
}