applications/luci-firewall: fix some datatype sepcifications after r8156
This commit is contained in:
parent
15846f9124
commit
3ee2fcccca
2 changed files with 4 additions and 4 deletions
|
@ -282,7 +282,7 @@ else
|
|||
|
||||
|
||||
o = s:option(Value, "src_port", translate("Source port"))
|
||||
o.datatype = "list(neg,portrange)"
|
||||
o.datatype = "list(neg(portrange))"
|
||||
o.placeholder = translate("any")
|
||||
|
||||
|
||||
|
@ -299,7 +299,7 @@ else
|
|||
|
||||
|
||||
o = s:option(Value, "dest_port", translate("Destination port"))
|
||||
o.datatype = "list(neg,portrange)"
|
||||
o.datatype = "list(neg(portrange))"
|
||||
o.placeholder = translate("any")
|
||||
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ msrc = s:taboption("advanced", DynamicList, "masq_src",
|
|||
translate("Restrict Masquerading to given source subnets"))
|
||||
|
||||
msrc.optional = true
|
||||
msrc.datatype = "list(neg,network)"
|
||||
msrc.datatype = "list(neg(or(uciname,hostname,ip4addr)))"
|
||||
msrc.placeholder = "0.0.0.0/0"
|
||||
msrc:depends("family", "")
|
||||
msrc:depends("family", "ipv4")
|
||||
|
@ -146,7 +146,7 @@ mdest = s:taboption("advanced", DynamicList, "masq_dest",
|
|||
translate("Restrict Masquerading to given destination subnets"))
|
||||
|
||||
mdest.optional = true
|
||||
mdest.datatype = "list(neg,network)"
|
||||
mdest.datatype = "list(neg(or(uciname,hostname,ip4addr)))"
|
||||
mdest.placeholder = "0.0.0.0/0"
|
||||
mdest:depends("family", "")
|
||||
mdest:depends("family", "ipv4")
|
||||
|
|
Loading…
Reference in a new issue