mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add an OnAcked callback to ackhandler.Frames
This commit is contained in:
parent
0edb3f2b93
commit
3525a51ada
3 changed files with 21 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue