traffic-control: (fixes #2660) TrafficControlHelper::Default should not configure internal queue sizes

This commit is contained in:
Tom Henderson
2017-02-24 14:40:03 +01:00
parent 10788a403b
commit d79d1d9681
2 changed files with 2 additions and 2 deletions

View File

@@ -89,6 +89,7 @@ Bugs fixed
- Bug 2629 - Assert failure in MinstrelHtWifiManager::GetLowestIndex
- Bug 2647 - ideal-wifi-manager-example crashes when NSS > 1
- Bug 2655 - A-MPDU simulation using TCP sometimes fails with message "Packet has no Traffic ID"
- Bug 2660 - TrafficControlHelper::Default should not configure internal queue sizes
Known issues
------------

View File

@@ -110,8 +110,7 @@ TrafficControlHelper
TrafficControlHelper::Default (void)
{
TrafficControlHelper helper;
uint16_t handle = helper.SetRootQueueDisc ("ns3::PfifoFastQueueDisc");
helper.AddInternalQueues (handle, 3, "ns3::DropTailQueue", "MaxPackets", UintegerValue (1000));
helper.SetRootQueueDisc ("ns3::PfifoFastQueueDisc");
return helper;
}