From 8d80974785663c42b671df607fc74d291fb8144c Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 4 Jun 2006 23:54:11 +0000 Subject: [PATCH] MFC 12528 fix queue prios 1 = P2P* 2 = OthersL 3 = default 4 = OthersH 5 = Games 6 = VOIP 7 = empty acks --- usr/local/www/wizards/traffic_shaper_wizard.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/local/www/wizards/traffic_shaper_wizard.inc b/usr/local/www/wizards/traffic_shaper_wizard.inc index ec96e5665e..edd76302d4 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard.inc @@ -414,7 +414,7 @@ function step4_stepsubmitphpaction() { $queue['name'] = "qP2PUp"; $queue['attachtoqueue'] = "{$upq}Root"; $queue['associatedrule'] = 0; - $queue['priority'] = 0; + $queue['priority'] = 1; $queue['red'] = "on"; $queue['ecn'] = "on"; if ($config['shaper']['schedulertype'] == "hfsc") { @@ -435,7 +435,7 @@ function step4_stepsubmitphpaction() { $queue['name'] = "qP2PDown"; $queue['attachtoqueue'] = "{$downq}Root"; $queue['associatedrule'] = 0; - $queue['priority'] = 0; + $queue['priority'] = 1; $queue['red'] = "on"; $queue['ecn'] = "on"; if ($config['shaper']['schedulertype'] == "hfsc") { @@ -695,7 +695,7 @@ function step6_stepsubmitphpaction() { $queue['name'] = "qOthersUpH"; $queue['attachtoqueue'] = "{$upq}Root"; $queue['associatedrule'] = 0; - $queue['priority'] = 6; + $queue['priority'] = 4; $queue['red'] = "on"; $queue['ecn'] = "on"; if ($config['shaper']['schedulertype'] == "hfsc") { @@ -715,7 +715,7 @@ function step6_stepsubmitphpaction() { $queue['name'] = "qOthersDownH"; $queue['attachtoqueue'] = "{$downq}Root"; $queue['associatedrule'] = 0; - $queue['priority'] = 6; + $queue['priority'] = 4; $queue['red'] = "on"; $queue['ecn'] = "on"; if ($config['shaper']['schedulertype'] == "hfsc") {