mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
Merge pull request #2613 from lucas-clemente/log-send-packet-last
log sent packets right before sending them out
This commit is contained in:
commit
3289d2ce38
1 changed files with 1 additions and 1 deletions
|
@ -1508,9 +1508,9 @@ func (s *session) sendPackedPacket(packet *packedPacket) {
|
|||
if s.firstAckElicitingPacketAfterIdleSentTime.IsZero() && packet.IsAckEliciting() {
|
||||
s.firstAckElicitingPacketAfterIdleSentTime = now
|
||||
}
|
||||
s.logPacket(now, packet)
|
||||
s.sentPacketHandler.SentPacket(packet.ToAckHandlerPacket(time.Now(), s.retransmissionQueue))
|
||||
s.connIDManager.SentPacket()
|
||||
s.logPacket(now, packet)
|
||||
s.sendQueue.Send(packet.buffer)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue