Skip to content

Commit

Permalink
AQM: added support for sfq and pie qdisc selection
Browse files Browse the repository at this point in the history
also made the default fq_codel
  • Loading branch information
Dave Taht committed May 18, 2013
1 parent 0a2ed87 commit d4a6db9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions luci/luci-app-aqm/files/aqm-cbi.lua
Expand Up @@ -40,13 +40,15 @@ e = s:option(Flag, "enabled", translate("Enable"))
e.rmempty = false

c = s:option(ListValue, "qdisc", translate("Queueing discipline"))
c:value("nfq_codel", "nfq_codel ("..translate("default")..")")
c:value("fq_codel", "fq_codel ("..translate("default")..")")
c:value("efq_codel")
c:value("fq_codel")
c:value("nfq_codel")
c:value("sfq")
c:value("codel")
c:value("ns2_codel")
c.default = "nfq_codel"
c:value("pie")
c:value("sfq")
c.default = "fq_codel"
c.rmempty = false

local qos_desc = ""
Expand Down

0 comments on commit d4a6db9

Please sign in to comment.