An implementation of LEDBAT. More...
#include "tcp-ledbat.h"
Classes | |
struct | OwdCircBuf |
Buffer structure to store delays. More... | |
Public Member Functions | |
TcpLedbat () | |
Create an unbound tcp socket. More... | |
TcpLedbat (const TcpLedbat &sock) | |
Copy constructor. More... | |
~TcpLedbat () override | |
Destructor. More... | |
Ptr< TcpCongestionOps > | Fork () override |
Copy the congestion control algorithm across sockets. More... | |
std::string | GetName () const override |
Get the name of the TCP flavour. More... | |
void | IncreaseWindow (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked) override |
Adjust cwnd following LEDBAT algorithm. More... | |
void | PktsAcked (Ptr< TcpSocketState > tcb, uint32_t segmentsAcked, const Time &rtt) override |
Get information from the acked packet. More... | |
void | SetDoSs (SlowStartType doSS) |
Change the Slow Start Capability. More... | |
Public Member Functions inherited from ns3::TcpNewReno | |
TcpNewReno () | |
TcpNewReno (const TcpNewReno &sock) | |
Copy constructor. More... | |
~TcpNewReno () override | |
uint32_t | GetSsThresh (Ptr< const TcpSocketState > tcb, uint32_t bytesInFlight) override |
Get the slow start threshold after a loss event. 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... | |
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 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 |
Reduce Congestion. 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 Types | |
typedef uint32_t(* | FilterFunction) (OwdCircBuf &) |
Filter function used by LEDBAT for current delay. More... | |
enum | SlowStartType { DO_NOT_SLOWSTART , DO_SLOWSTART } |
The slowstart types. More... | |
enum | State : uint32_t { LEDBAT_VALID_OWD = (1 << 1) , LEDBAT_CAN_SS = (1 << 3) } |
The state of LEDBAT. More... | |
Private Member Functions | |
void | AddDelay (OwdCircBuf &cb, uint32_t owd, uint32_t maxlen) |
Add new delay to the buffers. More... | |
uint32_t | BaseDelay () |
Return the value of base delay. More... | |
uint32_t | CurrentDelay (FilterFunction filter) |
Return the value of current delay. More... | |
void | InitCircBuf (OwdCircBuf &buffer) |
Initialise a new buffer. More... | |
void | UpdateBaseDelay (uint32_t owd) |
Update the base delay buffer. More... | |
Static Private Member Functions | |
static uint32_t | MinCircBuf (OwdCircBuf &b) |
Return the minimum delay of the buffer. More... | |
Private Attributes | |
uint32_t | m_baseHistoLen |
Length of base delay history buffer. More... | |
OwdCircBuf | m_baseHistory |
Buffer to store the base delay. More... | |
SlowStartType | m_doSs |
Permissible Slow Start State. More... | |
uint32_t | m_flag |
LEDBAT Flag. More... | |
double | m_gain |
GAIN value from RFC. More... | |
uint64_t | m_lastRollover |
Timestamp of last added delay. More... | |
uint32_t | m_minCwnd |
Minimum cWnd value mentioned in RFC 6817. More... | |
OwdCircBuf | m_noiseFilter |
Buffer to store the current delay. More... | |
uint32_t | m_noiseFilterLen |
Length of current delay buffer. More... | |
int32_t | m_sndCwndCnt |
The congestion window addition parameter. More... | |
Time | m_target |
Target Queue Delay. 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 LEDBAT.
Definition at line 39 of file tcp-ledbat.h.
|
private |
Filter function used by LEDBAT for current delay.
Definition at line 145 of file tcp-ledbat.h.
|
private |
The slowstart types.
Enumerator | |
---|---|
DO_NOT_SLOWSTART | Do not Slow Start. |
DO_SLOWSTART | Do NewReno Slow Start. |
Definition at line 45 of file tcp-ledbat.h.
|
private |
The state of LEDBAT.
If LEDBAT is not in VALID_OWD state, it falls to default congestion ops.
Enumerator | |
---|---|
LEDBAT_VALID_OWD | If valid timestamps are present. |
LEDBAT_CAN_SS | If LEDBAT allows Slow Start. |
Definition at line 55 of file tcp-ledbat.h.
ns3::TcpLedbat::TcpLedbat | ( | ) |
Create an unbound tcp socket.
Definition at line 90 of file tcp-ledbat.cc.
References DO_SLOWSTART, InitCircBuf(), LEDBAT_CAN_SS, m_baseHistoLen, m_baseHistory, m_doSs, m_flag, m_gain, m_lastRollover, m_minCwnd, m_noiseFilter, m_noiseFilterLen, m_sndCwndCnt, m_target, ns3::MilliSeconds(), and NS_LOG_FUNCTION.
ns3::TcpLedbat::TcpLedbat | ( | const TcpLedbat & | sock | ) |
Copy constructor.
sock | the object to copy |
Definition at line 115 of file tcp-ledbat.cc.
References m_baseHistoLen, m_baseHistory, m_doSs, m_flag, m_gain, m_lastRollover, m_minCwnd, m_noiseFilter, m_noiseFilterLen, m_sndCwndCnt, m_target, and NS_LOG_FUNCTION.
|
override |
|
private |
Add new delay to the buffers.
cb | The buffer |
owd | The new delay |
maxlen | The maximum permitted length |
Definition at line 242 of file tcp-ledbat.cc.
References ns3::TcpLedbat::OwdCircBuf::buffer, ns3::TcpLedbat::OwdCircBuf::min, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Referenced by PktsAcked(), and UpdateBaseDelay().
|
private |
Return the value of base delay.
Definition at line 171 of file tcp-ledbat.cc.
References m_baseHistory, MinCircBuf(), and NS_LOG_FUNCTION.
Referenced by CongestionAvoidance().
|
overrideprotectedvirtual |
Reduce Congestion.
tcb | internal congestion state |
segmentsAcked | count of segments ACKed |
Reimplemented from ns3::TcpNewReno.
Definition at line 197 of file tcp-ledbat.cc.
References BaseDelay(), ns3::TcpNewReno::CongestionAvoidance(), CurrentDelay(), ns3::TracedValue< T >::Get(), ns3::Time::GetMilliSeconds(), LEDBAT_VALID_OWD, ns3::TcpSocketState::m_cWnd, m_flag, m_gain, ns3::TcpSocketState::m_highTxMark, ns3::TcpSocketState::m_lastAckedSeq, m_minCwnd, ns3::TcpSocketState::m_segmentSize, m_sndCwndCnt, ns3::TcpSocketState::m_ssThresh, m_target, max, min, MinCircBuf(), and NS_LOG_FUNCTION.
Referenced by IncreaseWindow().
|
private |
Return the value of current delay.
filter | The filter function |
Definition at line 164 of file tcp-ledbat.cc.
References m_noiseFilter, and NS_LOG_FUNCTION.
Referenced by CongestionAvoidance().
|
overridevirtual |
Copy the congestion control algorithm across sockets.
Reimplemented from ns3::TcpNewReno.
Definition at line 138 of file tcp-ledbat.cc.
|
overridevirtual |
Get the name of the TCP flavour.
Reimplemented from ns3::TcpNewReno.
Definition at line 144 of file tcp-ledbat.cc.
|
static |
Get the type ID.
Definition at line 35 of file tcp-ledbat.cc.
References DO_NOT_SLOWSTART, DO_SLOWSTART, m_baseHistoLen, m_gain, m_minCwnd, m_noiseFilterLen, m_target, ns3::MakeDoubleAccessor(), ns3::MakeEnumChecker(), ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MakeUintegerAccessor(), ns3::MilliSeconds(), SetDoSs(), and ns3::TypeId::SetParent().
|
overridevirtual |
Adjust cwnd following LEDBAT algorithm.
tcb | internal congestion state |
segmentsAcked | count of segments ACKed |
Reimplemented from ns3::TcpNewReno.
Definition at line 178 of file tcp-ledbat.cc.
References CongestionAvoidance(), DO_SLOWSTART, ns3::TracedValue< T >::Get(), LEDBAT_CAN_SS, ns3::TcpSocketState::m_cWnd, m_doSs, m_flag, ns3::TcpSocketState::m_segmentSize, ns3::TcpSocketState::m_ssThresh, NS_LOG_FUNCTION, and ns3::TcpNewReno::SlowStart().
|
private |
Initialise a new buffer.
buffer | The buffer to be initialised |
Definition at line 108 of file tcp-ledbat.cc.
References ns3::TcpLedbat::OwdCircBuf::buffer, ns3::TcpLedbat::OwdCircBuf::min, and NS_LOG_FUNCTION.
Referenced by TcpLedbat().
|
staticprivate |
Return the minimum delay of the buffer.
b | The buffer |
Definition at line 150 of file tcp-ledbat.cc.
References ns3::TcpLedbat::OwdCircBuf::buffer, ns3::TcpLedbat::OwdCircBuf::min, and NS_LOG_FUNCTION_NOARGS.
Referenced by BaseDelay(), and CongestionAvoidance().
|
overridevirtual |
Get information from the acked packet.
tcb | internal congestion state |
segmentsAcked | count of segments ACKed |
rtt | The estimated rtt |
Reimplemented from ns3::TcpCongestionOps.
Definition at line 304 of file tcp-ledbat.cc.
References AddDelay(), ns3::Time::IsPositive(), LEDBAT_VALID_OWD, m_flag, m_noiseFilter, m_noiseFilterLen, ns3::TcpSocketState::m_rcvTimestampEchoReply, ns3::TcpSocketState::m_rcvTimestampValue, NS_LOG_FUNCTION, and UpdateBaseDelay().
void ns3::TcpLedbat::SetDoSs | ( | SlowStartType | doSS | ) |
Change the Slow Start Capability.
doSS | Slow Start Option |
Definition at line 76 of file tcp-ledbat.cc.
References LEDBAT_CAN_SS, m_doSs, m_flag, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Update the base delay buffer.
owd | The delay |
Definition at line 274 of file tcp-ledbat.cc.
References AddDelay(), ns3::TcpLedbat::OwdCircBuf::buffer, ns3::Time::GetSeconds(), m_baseHistoLen, m_baseHistory, m_lastRollover, ns3::TcpLedbat::OwdCircBuf::min, ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by PktsAcked().
|
private |
Length of base delay history buffer.
Definition at line 189 of file tcp-ledbat.h.
Referenced by TcpLedbat(), GetTypeId(), and UpdateBaseDelay().
|
private |
Buffer to store the base delay.
Definition at line 193 of file tcp-ledbat.h.
Referenced by TcpLedbat(), BaseDelay(), and UpdateBaseDelay().
|
private |
Permissible Slow Start State.
Definition at line 188 of file tcp-ledbat.h.
Referenced by TcpLedbat(), IncreaseWindow(), and SetDoSs().
|
private |
LEDBAT Flag.
Definition at line 195 of file tcp-ledbat.h.
Referenced by TcpLedbat(), CongestionAvoidance(), IncreaseWindow(), PktsAcked(), and SetDoSs().
|
private |
GAIN value from RFC.
Definition at line 187 of file tcp-ledbat.h.
Referenced by TcpLedbat(), CongestionAvoidance(), and GetTypeId().
|
private |
Timestamp of last added delay.
Definition at line 191 of file tcp-ledbat.h.
Referenced by TcpLedbat(), and UpdateBaseDelay().
|
private |
Minimum cWnd value mentioned in RFC 6817.
Definition at line 196 of file tcp-ledbat.h.
Referenced by TcpLedbat(), CongestionAvoidance(), and GetTypeId().
|
private |
Buffer to store the current delay.
Definition at line 194 of file tcp-ledbat.h.
Referenced by TcpLedbat(), CurrentDelay(), and PktsAcked().
|
private |
Length of current delay buffer.
Definition at line 190 of file tcp-ledbat.h.
Referenced by TcpLedbat(), GetTypeId(), and PktsAcked().
|
private |
The congestion window addition parameter.
Definition at line 192 of file tcp-ledbat.h.
Referenced by TcpLedbat(), and CongestionAvoidance().
|
private |
Target Queue Delay.
Definition at line 186 of file tcp-ledbat.h.
Referenced by TcpLedbat(), CongestionAvoidance(), and GetTypeId().