An implementation of TCP HighSpeed. More...
#include "tcp-highspeed.h"
Public Member Functions | |
TcpHighSpeed () | |
Create an unbound tcp socket. More... | |
TcpHighSpeed (const TcpHighSpeed &sock) | |
Copy constructor. More... | |
~TcpHighSpeed () override | |
Ptr< TcpCongestionOps > | Fork () override |
Copy the congestion control algorithm across sockets. More... | |
std::string | GetName () const override |
Get the name of the congestion control algorithm. More... | |
uint32_t | GetSsThresh (Ptr< const TcpSocketState > tcb, uint32_t bytesInFlight) override |
Get slow start threshold following HighSpeed principles. More... | |
Public Member Functions inherited from ns3::TcpNewReno | |
TcpNewReno () | |
TcpNewReno (const TcpNewReno &sock) | |
Copy constructor. More... | |
~TcpNewReno () override | |
void | IncreaseWindow (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked) override |
Try to increase the cWnd following the NewReno specification. More... | |
Public Member Functions inherited from ns3::TcpCongestionOps | |
TcpCongestionOps () | |
TcpCongestionOps (const TcpCongestionOps &other) | |
Copy constructor. More... | |
~TcpCongestionOps () override | |
virtual void | CongControl (Ptr< TcpSocketState > tcb, const TcpRateOps::TcpRateConnection &rc, const TcpRateOps::TcpRateSample &rs) |
Called when packets are delivered to update cwnd and pacing rate. More... | |
virtual void | CongestionStateSet (Ptr< TcpSocketState > tcb, const TcpSocketState::TcpCongState_t newState) |
Trigger events/calculations specific to a congestion state. More... | |
virtual void | CwndEvent (Ptr< TcpSocketState > tcb, const TcpSocketState::TcpCAEvent_t event) |
Trigger events/calculations on occurrence of congestion window event. More... | |
virtual bool | HasCongControl () const |
Returns true when Congestion Control Algorithm implements CongControl. More... | |
virtual void | Init (Ptr< TcpSocketState > tcb[[maybe_unused]]) |
Set configuration required by congestion control algorithm. More... | |
virtual void | PktsAcked (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked, const Time &rtt) |
Timing information on received ACK. More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
~Object () override | |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose () |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. More... | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized () const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
static uint32_t | TableLookupA (uint32_t w) |
Lookup table for the coefficient a (from RFC 3649) More... | |
static double | TableLookupB (uint32_t w) |
Lookup table for the coefficient b (from RFC 3649) More... | |
Static Public Member Functions inherited from ns3::TcpNewReno | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::TcpCongestionOps | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Protected Member Functions | |
void | CongestionAvoidance (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked) override |
Congestion avoidance of TcpHighSpeed. More... | |
Protected Member Functions inherited from ns3::TcpNewReno | |
virtual uint32_t | SlowStart (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked) |
Tcp NewReno slow start algorithm. More... | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoDispose () |
Destructor implementation. More... | |
virtual void | DoInitialize () |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. More... | |
Private Attributes | |
uint32_t | m_ackCnt |
Number of received ACK, corrected with the coefficient a. More... | |
Additional Inherited Members | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
An implementation of TCP HighSpeed.
TCP HighSpeed is designed for high-capacity channels or, in general, for TCP connections with large congestion windows. Conceptually, with respect to the standard TCP, HighSpeed makes the cWnd grow faster during the probing phases and accelerates the cWnd recovery from losses. This behavior is executed only when the window grows beyond a certain threshold, which allows TCP Highspeed to be friendly with standard TCP in environments with heavy congestion, without introducing new dangers of congestion collapse. At the core of TCP HighSpeed there are two functions, a(w) and b(w), which respectively specify the cWnd growth addendum and the cWnd reduction factor when given an actual cWnd value w.
More information: http://dl.acm.org/citation.cfm?id=2756518
Definition at line 49 of file tcp-highspeed.h.
ns3::TcpHighSpeed::TcpHighSpeed | ( | ) |
Create an unbound tcp socket.
Definition at line 41 of file tcp-highspeed.cc.
References NS_LOG_FUNCTION.
ns3::TcpHighSpeed::TcpHighSpeed | ( | const TcpHighSpeed & | sock | ) |
Copy constructor.
sock | the object to copy |
Definition at line 48 of file tcp-highspeed.cc.
References NS_LOG_FUNCTION.
|
override |
Definition at line 55 of file tcp-highspeed.cc.
References NS_LOG_FUNCTION.
|
overrideprotectedvirtual |
Congestion avoidance of TcpHighSpeed.
As implementation choice, we increment cWnd only by MSS, when the right number of ACK has been received. At this point, the important question is: what is the "right number of ACK" ?
As you can recall from RFC, Highspeed works this way:
w = w + a(w)/w
Let's start when a(w) is 1 (so it is classical NewReno). The formula then is the classical text-book version for NewReno:
w = w + 1 / w
So, for each segment acked, we increase the window by the quantity 1/w. Or, instead of adding the 1/w quantity for each segment acked, we can track the number of segments acked (m_ackCnt) and increment by 1 MSS when m_ackCnt reaches w.
When a(w) > 1, it means that each segment acked has a different "weight". For instance, when it is equal to 2, we need to increase the window by the quantity 2/w. But, this means that one segment acked is equivalent (from the point of view of incrementing cWnd) to two segments acked in NewReno (1/w + 1/w). That a coefficient is, in other word, the weight of each segment acked. More weight, less ACK are necessary to increment cWnd, which is exactly the Highspeed principle.
tcb | internal congestion state |
segmentsAcked | count of segments acked |
Reimplemented from ns3::TcpNewReno.
Definition at line 99 of file tcp-highspeed.cc.
References ns3::TcpSocketState::GetCwndInSegments(), m_ackCnt, ns3::TcpSocketState::m_cWnd, ns3::TcpSocketState::m_segmentSize, ns3::TcpSocketState::m_ssThresh, NS_LOG_FUNCTION, NS_LOG_INFO, and TableLookupA().
|
overridevirtual |
Copy the congestion control algorithm across sockets.
Reimplemented from ns3::TcpNewReno.
Definition at line 61 of file tcp-highspeed.cc.
|
overridevirtual |
Get the name of the congestion control algorithm.
Reimplemented from ns3::TcpNewReno.
Definition at line 127 of file tcp-highspeed.cc.
|
overridevirtual |
Get slow start threshold following HighSpeed principles.
tcb | internal congestion state |
bytesInFlight | Bytes in flight |
Reimplemented from ns3::TcpNewReno.
Definition at line 141 of file tcp-highspeed.cc.
References max, NS_LOG_DEBUG, NS_LOG_FUNCTION, and TableLookupB().
|
static |
Get the type ID.
Definition at line 32 of file tcp-highspeed.cc.
References ns3::TypeId::SetParent().
|
static |
Lookup table for the coefficient a (from RFC 3649)
w | Window value (in packets) |
Definition at line 156 of file tcp-highspeed.cc.
Referenced by CongestionAvoidance().
|
static |
Lookup table for the coefficient b (from RFC 3649)
w | Window value (in packets) |
Definition at line 457 of file tcp-highspeed.cc.
Referenced by GetSsThresh().
|
private |
Number of received ACK, corrected with the coefficient a.
Definition at line 98 of file tcp-highspeed.h.
Referenced by CongestionAvoidance().