mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Add DSCP support
This commit is contained in:
parent
39e5211172
commit
b8adf51e1d
7 changed files with 327 additions and 1 deletions
31
luci-app-omr-dscp/luasrc/model/cbi/dscp-domains.lua
Normal file
31
luci-app-omr-dscp/luasrc/model/cbi/dscp-domains.lua
Normal file
|
@ -0,0 +1,31 @@
|
|||
-- Copyright 2018-2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
local ipc = require "luci.ip"
|
||||
local sys = require "luci.sys"
|
||||
local net = require "luci.model.network".init()
|
||||
|
||||
m = Map("dscp", translate("DSCP by domain"), translate("Set DSCP by domains."))
|
||||
|
||||
s = m:section(TypedSection, "domains", translate("Domains"))
|
||||
s.addremove = true
|
||||
s.anonymous = true
|
||||
s.template = "cbi/tblsection"
|
||||
|
||||
hn = s:option(Value, "name", translate("Domain"))
|
||||
hn.datatype = "hostname"
|
||||
hn.optional = false
|
||||
--hn.rmempty = true
|
||||
|
||||
t = s:option(ListValue, "class", translate("Class"))
|
||||
t:value("cs0", translate("CS0 - Normal/Best Effort"))
|
||||
t:value("cs1", translate("CS1 - Low priority"))
|
||||
t:value("cs2", translate("CS2 - High priority"))
|
||||
t:value("cs3", translate("CS3 - SIP"))
|
||||
t:value("cs4", translate("CS4 - Streaming video"))
|
||||
t:value("cs5", translate("CS5"))
|
||||
t:value("cs6", translate("CS6 - Network routing"))
|
||||
t:value("cs7", translate("CS7"))
|
||||
t:value("ef", translate("EF Voice"))
|
||||
|
||||
return m
|
Loading…
Add table
Add a link
Reference in a new issue