From ca16c66aab48473739bb93a4a89adca65271c152 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Tue, 8 Jul 2014 06:46:45 -0500 Subject: [PATCH] qlimit must be included here --- etc/inc/shaper.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc index d8ceee8bed..5bfa81e0b9 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())