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:
Marten Seemann 2025-01-22 20:35:29 -08:00 committed by GitHub
parent a4c9b04c58
commit e12f91cfc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.registerPackedShortHeaderPacket(p, ecn, now)
s.sendQueue.Send(buf, 0, ecn)
// This is kind of a hack. We need to trigger sending again somehow.
s.pacingDeadline = deadlineSendImmediately
// There's (likely) more data to send. Loop around again.
s.scheduleSending()
return nil
}