mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
clean up MTU probe packet sending logic (#4914)
As the comment said, using the pacing deadline was a hack. Instead, we can just schedule sending, and loop around the run loop one more time.
This commit is contained in:
parent
a4c9b04c58
commit
e12f91cfc7
1 changed files with 2 additions and 2 deletions
|
@ -1890,8 +1890,8 @@ func (s *connection) sendPackets(now time.Time) error {
|
||||||
s.logShortHeaderPacket(p.DestConnID, p.Ack, p.Frames, p.StreamFrames, p.PacketNumber, p.PacketNumberLen, p.KeyPhase, ecn, buf.Len(), false)
|
s.logShortHeaderPacket(p.DestConnID, p.Ack, p.Frames, p.StreamFrames, p.PacketNumber, p.PacketNumberLen, p.KeyPhase, ecn, buf.Len(), false)
|
||||||
s.registerPackedShortHeaderPacket(p, ecn, now)
|
s.registerPackedShortHeaderPacket(p, ecn, now)
|
||||||
s.sendQueue.Send(buf, 0, ecn)
|
s.sendQueue.Send(buf, 0, ecn)
|
||||||
// This is kind of a hack. We need to trigger sending again somehow.
|
// There's (likely) more data to send. Loop around again.
|
||||||
s.pacingDeadline = deadlineSendImmediately
|
s.scheduleSending()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue