[Sumover-dev] [svn commit] r4833 - vic/branches/cc/cc

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu May 13 01:19:09 BST 2010


Author: soohyunc
Date: Thu May 13 01:19:09 2010
New Revision: 4833

Modified:
   vic/branches/cc/cc/tfwc_sndr.cpp

Log:
decay factor when calculating RTT is set to 0.95 (from ns-2 simulator),
but realised this value is a little aggressive in real-world.

hence, decay factor is set to 99& (i.e., 0.99), meaning that it gives 99% weight
to the previous SRTT and gives 1% to the sampled RTT when calculating RTT.



Modified: vic/branches/cc/cc/tfwc_sndr.cpp
==============================================================================
--- vic/branches/cc/cc/tfwc_sndr.cpp	(original)
+++ vic/branches/cc/cc/tfwc_sndr.cpp	Thu May 13 01:19:09 2010
@@ -99,7 +99,7 @@
 	srtt_ = -1.0;
 	rto_ = 3.0;		// RFC 1122
 	rttvar_ = 0.0;
-	df_ = 0.95;
+	df_ = 0.99;
 	sqrtrtt_ = 1.0;
 	t0_ = 6.0;
 	alpha_ = 0.125;



More information about the Sumover-dev mailing list