#include <TCPTahoeRenoFamily.h>
Inheritance diagram for TCPTahoeRenoFamilyStateVariables:

Public Member Functions | |
| TCPTahoeRenoFamilyStateVariables () | |
| virtual std::string | info () const |
| virtual std::string | detailedInfo () const |
Public Attributes | |
| uint | ssthresh |
| slow start threshold | |
|
|
00025 {
00026 ssthresh = 65535;
00027 }
|
|
|
Reimplemented from TCPBaseAlgStateVariables. 00038 {
00039 std::stringstream out;
00040 out << TCPBaseAlgStateVariables::detailedInfo();
00041 out << "ssthresh = " << ssthresh << "\n";
00042 return out.str();
00043 }
|
|
|
Reimplemented from TCPBaseAlgStateVariables. 00030 {
00031 std::stringstream out;
00032 out << TCPBaseAlgStateVariables::info();
00033 out << " ssthresh=" << ssthresh;
00034 return out.str();
00035 }
|
|
|
slow start threshold
|
1.4.1