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 2017/12/18 02:13:30 UTC

[trafficserver] branch quic-latest updated (559ed2c -> 0fa3586)

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

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


    from 559ed2c  Fix storing STREAM frame on retransmission
     new 2411e7e  Unify log output from LossDetector
     new 0fa3586  Fix retransmittable packet count

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 iocore/net/quic/QUICLossDetector.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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

[trafficserver] 01/02: Unify log output from LossDetector

Posted by ma...@apache.org.
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

commit 2411e7e9c4e8296b4c3ce82cd13ed814e62cca8a
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Dec 18 11:10:48 2017 +0900

    Unify log output from LossDetector
---
 iocore/net/quic/QUICLossDetector.cc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/iocore/net/quic/QUICLossDetector.cc b/iocore/net/quic/QUICLossDetector.cc
index 45896b0..16699b2 100644
--- a/iocore/net/quic/QUICLossDetector.cc
+++ b/iocore/net/quic/QUICLossDetector.cc
@@ -273,9 +273,8 @@ QUICLossDetector::_on_loss_detection_alarm()
     // this->_send_two_packets();
     this->_rto_count++;
   }
-  QUICLDDebug("Unacked packets %lu (handshake pkt %u, retransmittable %u, other %lu)", this->_sent_packets.size(),
-              this->_handshake_outstanding.load(), this->_retransmittable_outstanding.load(),
-              this->_sent_packets.size() - (this->_handshake_outstanding.load() + this->_retransmittable_outstanding.load()));
+  QUICLDDebug("Unacked packets %lu (retransmittable %u, includes %u handshake packets)", this->_sent_packets.size(),
+              this->_retransmittable_outstanding.load(), this->_handshake_outstanding.load());
   this->_set_loss_detection_alarm();
 }
 

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

[trafficserver] 02/02: Fix retransmittable packet count

Posted by ma...@apache.org.
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

commit 0fa3586002d78f6e19329098c593a58f4514169b
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Dec 18 11:12:34 2017 +0900

    Fix retransmittable packet count
---
 iocore/net/quic/QUICLossDetector.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/quic/QUICLossDetector.cc b/iocore/net/quic/QUICLossDetector.cc
index 16699b2..b90b0d4 100644
--- a/iocore/net/quic/QUICLossDetector.cc
+++ b/iocore/net/quic/QUICLossDetector.cc
@@ -383,5 +383,6 @@ QUICLossDetector::_retransmit_handshake_packets()
   for (auto packet_number : retransmitted_handshake_packets) {
     this->_sent_packets.erase(packet_number);
     --this->_handshake_outstanding;
+    --this->_retransmittable_outstanding;
   }
 }

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