Revision 3050a5d7
Added by Viktor Gurov about 5 years ago
src/etc/inc/shaper.inc | ||
---|---|---|
4069 | 4069 |
if ($selectedAQM["ecn"]) { |
4070 | 4070 |
if ($this->getECN() == 'on') { |
4071 | 4071 |
$pfq_rule .= ' ecn'; |
4072 |
} else { |
|
4072 |
} elseif (($this->getAQM() != 'red') && ($this->getAQM() != 'gred')) {
|
|
4073 | 4073 |
$pfq_rule .= ' noecn'; |
4074 | 4074 |
} |
4075 | 4075 |
} |
... | ... | |
4687 | 4687 |
if ($selectedAQM["ecn"]) { |
4688 | 4688 |
if ($this->getECN() == 'on') { |
4689 | 4689 |
$pfq_rule .= ' ecn'; |
4690 |
} else { |
|
4690 |
} elseif (($this->getAQM() != 'red') && ($this->getAQM() != 'gred')) {
|
|
4691 | 4691 |
$pfq_rule .= ' noecn'; |
4692 | 4692 |
} |
4693 | 4693 |
} |
Also available in: Unified diff
RED/GRED limiters do not have noecn option. Issue #10211
(cherry picked from commit 75fb1d576ab12fd399bcfeb57a02545b449a1df4)