qlimit must be included here

This commit is contained in:
Chris Buechler 2014-07-08 06:46:45 -05:00
parent 7b15d22967
commit ca16c66aab

View File

@ -530,6 +530,8 @@ class altq_root_queue {
$rules = " altq on " . get_real_interface($this->GetInterface());
if ($this->GetScheduler())
$rules .= " ".strtolower($this->GetScheduler());
if ($this->GetQlimit() > 0)
$rules .= " ( qlimit " . $this->GetQlimit() . " ) ";
if ($this->GetBandwidth()) {
$rules .= " bandwidth ".trim($this->GetBandwidth());
if ($this->GetBwscale())