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.
TCPTahoeRenoFamilyStateVariables::TCPTahoeRenoFamilyStateVariables | ( | ) |
{ ssthresh = 65535; }
std::string TCPTahoeRenoFamilyStateVariables::detailedInfo | ( | void | ) | const [virtual] |
Reimplemented from tcp_old::TCPBaseAlgStateVariables.
{ std::stringstream out; out << TCPBaseAlgStateVariables::detailedInfo(); out << "ssthresh = " << ssthresh << "\n"; return out.str(); }
std::string TCPTahoeRenoFamilyStateVariables::info | ( | ) | const [virtual] |
Reimplemented from tcp_old::TCPBaseAlgStateVariables.
{ std::stringstream out; out << TCPBaseAlgStateVariables::info(); out << " ssthresh=" << ssthresh; return out.str(); }
slow start threshold
Referenced by detailedInfo(), info(), tcp_old::TCPTahoe::processRexmitTimer(), tcp_old::TCPReno::processRexmitTimer(), tcp_old::TCPTahoe::recalculateSlowStartThreshold(), tcp_old::TCPReno::recalculateSlowStartThreshold(), tcp_old::TCPTahoe::receivedDataAck(), tcp_old::TCPReno::receivedDataAck(), tcp_old::TCPTahoe::receivedDuplicateAck(), tcp_old::TCPReno::receivedDuplicateAck(), and TCPTahoeRenoFamilyStateVariables().