I am trying to display the current queue status (i.e. the number of packets in the queue) of a node in OmNet++ using INET framework. I want to track the number of packets in the queue of a node in MAC layer.
In mac.cc file, I wrote the following
if (!txQueue->isEmpty())
{
EV << " queue size: " << txQueue->getNumPackets() << endl;
}
However, in output, I'm getting the queue size 0 all time.
Can anyone suggest me how to display it?
Thank you.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…