|
INET Framework for OMNeT++/OMNEST
|
#include <TCPTahoeRenoFamily_old.h>
Public Member Functions | |
| TCPTahoeRenoFamilyStateVariables () | |
| virtual std::string | info () const |
| virtual std::string | detailedInfo () const |
Public Attributes | |
| uint | ssthresh |
| slow start threshold | |
State variables for TCPTahoeRenoFamily.
Definition at line 29 of file TCPTahoeRenoFamily_old.h.
Definition at line 23 of file old/flavours/TCPTahoeRenoFamily.cc.
{
ssthresh = 65535;
}
| std::string TCPTahoeRenoFamilyStateVariables::detailedInfo | ( | void | ) | const [virtual] |
Reimplemented from tcp_old::TCPBaseAlgStateVariables.
Definition at line 36 of file old/flavours/TCPTahoeRenoFamily.cc.
{
std::stringstream out;
out << TCPBaseAlgStateVariables::detailedInfo();
out << "ssthresh = " << ssthresh << "\n";
return out.str();
}
| std::string TCPTahoeRenoFamilyStateVariables::info | ( | ) | const [virtual] |
Reimplemented from tcp_old::TCPBaseAlgStateVariables.
Definition at line 28 of file old/flavours/TCPTahoeRenoFamily.cc.
{
std::stringstream out;
out << TCPBaseAlgStateVariables::info();
out << " ssthresh=" << ssthresh;
return out.str();
}
slow start threshold
Definition at line 36 of file TCPTahoeRenoFamily_old.h.
Referenced by detailedInfo(), info(), tcp_old::TCPReno::processRexmitTimer(), tcp_old::TCPTahoe::processRexmitTimer(), tcp_old::TCPReno::recalculateSlowStartThreshold(), tcp_old::TCPTahoe::recalculateSlowStartThreshold(), tcp_old::TCPReno::receivedDataAck(), tcp_old::TCPTahoe::receivedDataAck(), tcp_old::TCPReno::receivedDuplicateAck(), tcp_old::TCPTahoe::receivedDuplicateAck(), and TCPTahoeRenoFamilyStateVariables().