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/22 03:55:56 UTC

[trafficserver] branch quic-latest updated: Print retransmission alarm in millisecond

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 2c7ebfb  Print retransmission alarm in millisecond
2c7ebfb is described below

commit 2c7ebfb7282ba0064c33af5eddc2fda77a76ce19
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Jan 22 14:55:13 2018 +1100

    Print retransmission alarm in millisecond
---
 iocore/net/quic/QUICLossDetector.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/quic/QUICLossDetector.cc b/iocore/net/quic/QUICLossDetector.cc
index 4a6bf4d..e12f937 100644
--- a/iocore/net/quic/QUICLossDetector.cc
+++ b/iocore/net/quic/QUICLossDetector.cc
@@ -289,7 +289,7 @@ QUICLossDetector::_set_loss_detection_alarm()
   } else {
     this->_loss_detection_alarm_at = this->_time_of_last_sent_packet + alarm_duration;
   }
-  QUICLDDebug("Loss detection alarm has been set to %" PRId64, alarm_duration);
+  QUICLDDebug("Loss detection alarm has been set to %" PRId64 "ms", alarm_duration / HRTIME_MSECOND);
 
   if (!this->_loss_detection_alarm) {
     this->_loss_detection_alarm = eventProcessor.schedule_every(this, HRTIME_MSECONDS(25));

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