diff --git a/CHANGES.html b/CHANGES.html index 2cee77ab3..9ede25951 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -95,6 +95,14 @@ us a note on ns-developers mailing list.

  • MqQueueDisc, a multi-queue aware queue disc modelled after the mq qdisc in Linux, has been introduced.
  • +
  • Added QueueDisc::GetStats() which returns detailed statistics about the operations of a queue disc. + Consequently, a number of methods of the QueueDisc class have been removed: GetTotalReceivedPackets(), + GetTotalReceivedBytes(), GetTotalDroppedPackets(), GetTotalDroppedBytes(), + GetTotalRequeuedPackets(), GetTotalRequeuedBytes(). +
  • +
  • Two new methods, QueueDisc::DropBeforeEnqueue() and QueueDisc::DropAfterDequeue() have + been introduced to replace QueueDisc::Drop(). Correspondingly, two new trace sources have been added to the QueueDisc class: DropBeforeEnqueue and DropAfterDequeue. +
  • Changes to existing API: