You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2018/03/05 05:44:33 UTC

[trafficserver] branch quic-latest updated: Retransmit all handshake packets

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/quic-latest by this push:
     new 8004b37  Retransmit all handshake packets
8004b37 is described below

commit 8004b3768733a9dba99b59871e6fa681e026d516
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Mar 5 14:43:09 2018 +0900

    Retransmit all handshake packets
    
    Because of this block, handshake packets might not be retransmitted actually
    if protected packets are already in the list.
---
 iocore/net/quic/QUICLossDetector.cc | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/iocore/net/quic/QUICLossDetector.cc b/iocore/net/quic/QUICLossDetector.cc
index eae580d..a4f0bb2 100644
--- a/iocore/net/quic/QUICLossDetector.cc
+++ b/iocore/net/quic/QUICLossDetector.cc
@@ -390,9 +390,6 @@ QUICLossDetector::_retransmit_handshake_packets()
   std::set<QUICPacketNumber> retransmitted_handshake_packets;
 
   for (auto &info : this->_sent_packets) {
-    if (!info.second->handshake) {
-      break;
-    }
     retransmitted_handshake_packets.insert(info.first);
     this->_transmitter->retransmit_packet(*info.second->packet);
   }

-- 
To stop receiving notification emails like this one, please contact
maskit@apache.org.