tcp: Change defaults in Cubic

This commit is contained in:
Aditya Chaudhary
2020-05-13 19:16:31 +05:30
committed by Tom Henderson
parent 223c5f941d
commit 810f92dfd1

View File

@@ -41,11 +41,11 @@ TcpCubic::GetTypeId (void)
MakeBooleanAccessor (&TcpCubic::m_fastConvergence),
MakeBooleanChecker ())
.AddAttribute ("Beta", "Beta for multiplicative decrease",
DoubleValue (0.8),
DoubleValue (0.7),
MakeDoubleAccessor (&TcpCubic::m_beta),
MakeDoubleChecker <double> (0.0))
.AddAttribute ("HyStart", "Enable (true) or disable (false) hybrid slow start algorithm",
BooleanValue (false),
BooleanValue (true),
MakeBooleanAccessor (&TcpCubic::m_hystart),
MakeBooleanChecker ())
.AddAttribute ("HyStartLowWindow", "Lower bound cWnd for hybrid slow start (segments)",