diff options
-rw-r--r-- | etc/inc/shaper.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc index 9146e72..7674430 100644 --- a/etc/inc/shaper.inc +++ b/etc/inc/shaper.inc @@ -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()) |