luci-app-shadowsocks-libev: remove option manager_address
It's an option that is supposed to be fed by ss-manager. It can be in the form of host:port or path to unix dgram socket. Drop it now with the assumption that it has no real user at the moment Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
parent
1ad37267ab
commit
f1862ced41
2 changed files with 0 additions and 3 deletions
|
@ -34,8 +34,6 @@ if stype == "ss_server" then
|
||||||
o.datatype = "ipaddr"
|
o.datatype = "ipaddr"
|
||||||
o.placeholder = "0.0.0.0"
|
o.placeholder = "0.0.0.0"
|
||||||
ss.values_ipaddr(o)
|
ss.values_ipaddr(o)
|
||||||
o = s:taboption("general", Value, "manager_address", translate("Manager address"))
|
|
||||||
o.datatype = "hostport"
|
|
||||||
else
|
else
|
||||||
ss.options_client(s, "general")
|
ss.options_client(s, "general")
|
||||||
if stype == "ss_tunnel" then
|
if stype == "ss_tunnel" then
|
||||||
|
|
|
@ -139,7 +139,6 @@ function cfgvalue_overview(sdata)
|
||||||
cfgvalue_overview_(sdata, lines, names_options_common)
|
cfgvalue_overview_(sdata, lines, names_options_common)
|
||||||
cfgvalue_overview_(sdata, lines, {
|
cfgvalue_overview_(sdata, lines, {
|
||||||
"bind_address",
|
"bind_address",
|
||||||
"manager_address",
|
|
||||||
})
|
})
|
||||||
elseif stype == "ss_local" or stype == "ss_redir" or stype == "ss_tunnel" then
|
elseif stype == "ss_local" or stype == "ss_redir" or stype == "ss_tunnel" then
|
||||||
cfgvalue_overview_(sdata, lines, names_options_client)
|
cfgvalue_overview_(sdata, lines, names_options_client)
|
||||||
|
|
Loading…
Reference in a new issue