commit | 9e5122bafcfddae82f137c24e0fdff81f6194bc2 | [log] [tgz] |
---|---|---|
author | Klaus Schneider <klaus@cs.arizona.edu> | Tue Mar 19 17:03:25 2019 -0700 |
committer | Klaus Schneider <klaus@cs.arizona.edu> | Thu Mar 21 20:03:34 2019 -0700 |
tree | a120e1f52ca9a552811184627f12b457930a8a74 | |
parent | bf2c51716a01a7d02931523a03cb3f98fdf79e4e [diff] [blame] |
catchunks: Implement CUBIC window adaptation Also increase the RTT estimator multiplier k to 8. Change-Id: I68c5096ac0da854f071bab5f7519b1c144f20ca1 refs: #4861
diff --git a/tools/chunks/catchunks/rtt-estimator.hpp b/tools/chunks/catchunks/rtt-estimator.hpp index 6f10326..47f2ac8 100644 --- a/tools/chunks/catchunks/rtt-estimator.hpp +++ b/tools/chunks/catchunks/rtt-estimator.hpp
@@ -57,7 +57,7 @@ : isVerbose(false) , alpha(0.125) , beta(0.25) - , k(4) + , k(8) , initialRto(1000.0) , minRto(200.0) , maxRto(20000.0)