|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
27 #ifndef FQ_PIE_QUEUE_DISC
28 #define FQ_PIE_QUEUE_DISC
30 #include "ns3/queue-disc.h"
31 #include "ns3/object-factory.h"
a unique identifier for an interface.
bool m_useDqRateEstimator
Enable/Disable usage of dequeue rate estimator for queue delay calculation.
bool m_useL4s
True if L4S is used (ECT1 packets are marked at CE threshold)
uint32_t m_perturbation
hash perturbation value
int32_t m_deficit
the deficit for this flow
ObjectFactory m_flowFactory
Factory to create a new flow.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
Time m_ceThreshold
Threshold above which to CE mark.
ObjectFactory m_queueDiscFactory
Factory to create a new queue.
FqPieFlow()
FqPieFlow constructor.
bool m_useDerandomization
Enable Derandomization feature mentioned in RFC 8033.
virtual bool DoEnqueue(Ptr< QueueDiscItem > item)
This function actually enqueues a packet into the queue disc.
A flow queue used by the FqPie queue disc.
Time m_tUpdate
Time period after which CalculateP () is called.
FqPieQueueDisc()
FqPieQueueDisc constructor.
uint32_t m_setWays
size of a set of queues (used by set associative hash)
QueueDiscClass is the base class for classes that are included in a queue disc.
std::list< Ptr< FqPieFlow > > m_newFlows
The list of new flows.
double m_markEcnTh
ECN marking threshold (default 10% as suggested in RFC 8033)
uint32_t SetAssociativeHash(uint32_t flowHash)
Compute the index of the queue for the flow having the given flowHash, according to the set associati...
double m_a
Parameter to pie controller.
Smart pointer class similar to boost::intrusive_ptr.
FlowStatus m_status
the status of this flow
uint32_t m_dropBatchSize
Max number of packets dropped from the fat flow.
uint32_t m_dqThreshold
Minimum queue size in bytes before dequeue rate is measured.
uint32_t m_meanPktSize
Average packet size in bytes.
std::map< uint32_t, uint32_t > m_tags
Tags used by set associative hash.
virtual ~FqPieQueueDisc()
Instantiate subclasses of ns3::Object.
Time m_maxBurst
Maximum burst allowed before random early dropping kicks in.
Simulation virtual time values and global simulation resolution.
int32_t GetDeficit(void) const
Get the deficit for this flow.
static constexpr const char * UNCLASSIFIED_DROP
No packet filter able to classify packet.
std::map< uint32_t, uint32_t > m_flowsIndices
Map with the index of class for each flow.
FlowStatus GetStatus(void) const
Get the status of this flow.
uint32_t GetQuantum(void) const
Get the quantum value.
bool m_enableSetAssociativeHash
whether to enable set associative hash
double m_b
Parameter to pie controller.
FlowStatus
Used to determine the status of this flow queue.
uint32_t m_flows
Number of flow queues.
void SetStatus(FlowStatus status)
Set the status for this flow.
uint32_t FqPieDrop(void)
Drop a packet from the head of the queue with the largest current byte count.
void SetQuantum(uint32_t quantum)
Set the quantum value.
bool m_isCapDropAdjustment
Enable/Disable Cap Drop Adjustment feature mentioned in RFC 8033.
void SetDeficit(uint32_t deficit)
Set the deficit for this flow.
Time m_sUpdate
Start time of the update timer.
static constexpr const char * OVERLIMIT_DROP
Overlimit dropped packets.
uint32_t GetIndex(void) const
Get the index of this flow.
void SetIndex(uint32_t index)
Set the index for this flow.
A FqPie packet queue disc.
uint32_t m_index
the index for this flow
Time m_qDelayRef
Desired queue delay.
std::list< Ptr< FqPieFlow > > m_oldFlows
The list of old flows.
static TypeId GetTypeId(void)
Get the type ID.
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
uint32_t m_quantum
Deficit assigned to flows at each round.
bool m_useEcn
True if ECN is used (packets are marked instead of being dropped)
virtual void InitializeParams(void)
Initialize parameters (if any) before the first packet is enqueued.
static TypeId GetTypeId(void)
Get the type ID.
void IncreaseDeficit(int32_t deficit)
Increase the deficit for this flow.
virtual bool CheckConfig(void)
Check whether the current configuration is correct.