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/01/19 07:23:36 UTC

[trafficserver] branch quic-latest updated: Disable TLP for now

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 ea129d3  Disable TLP for now
ea129d3 is described below

commit ea129d3ff4476c9f2509ccc32e6ae52817e515f9
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Fri Jan 19 16:21:48 2018 +0900

    Disable TLP for now
    
    TLP causes infinite retransmission & acknowledge loop somehow.
    Disable this as a workaround for next interop.
---
 iocore/net/quic/QUICLossDetector.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/iocore/net/quic/QUICLossDetector.cc b/iocore/net/quic/QUICLossDetector.cc
index 93aa5a8..4a6bf4d 100644
--- a/iocore/net/quic/QUICLossDetector.cc
+++ b/iocore/net/quic/QUICLossDetector.cc
@@ -309,7 +309,8 @@ QUICLossDetector::_on_loss_detection_alarm()
   } else if (this->_tlp_count < MAX_TLPS) {
     // Tail Loss Probe.
     QUICLDDebug("TLP");
-    this->_send_one_packet();
+    // FIXME TLP causes inifinite loop somehow
+    // this->_send_one_packet();
     this->_tlp_count++;
   } else {
     // RTO.

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].