Merge pull request #1499 from yousong/shadowsocks-libev
shadowsocks-libev: sync with packages repo
This commit is contained in:
commit
916595d157
2 changed files with 3 additions and 4 deletions
|
@ -34,8 +34,6 @@ if stype == "ss_server" then
|
|||
o.datatype = "ipaddr"
|
||||
o.placeholder = "0.0.0.0"
|
||||
ss.values_ipaddr(o)
|
||||
o = s:taboption("general", Value, "manager_address", translate("Manager address"))
|
||||
o.datatype = "hostport"
|
||||
else
|
||||
ss.options_client(s, "general")
|
||||
if stype == "ss_tunnel" then
|
||||
|
|
|
@ -42,7 +42,8 @@ function values_serverlist(o)
|
|||
local server = sdata["server"]
|
||||
local server_port = sdata["server_port"]
|
||||
if server and server_port then
|
||||
local desc = "%s - %s:%s" % {sname, sdata["server"], sdata["server_port"]}
|
||||
local disabled = ucival_to_bool(sdata[".disabled"]) and " - disabled" or ""
|
||||
local desc = "%s - %s:%s%s" % {sname, server, server_port, disabled}
|
||||
o:value(sname, desc)
|
||||
end
|
||||
end)
|
||||
|
@ -121,6 +122,7 @@ function options_common(s, tab)
|
|||
s:taboption(tab, Flag, "verbose", translate("Verbose"))
|
||||
s:taboption(tab, Flag, "ipv6_first", translate("IPv6 First"), translate("Prefer IPv6 addresses when resolving names"))
|
||||
s:taboption(tab, Flag, "fast_open", translate("Enable TCP Fast Open"))
|
||||
s:taboption(tab, Flag, "no_delay", translate("Enable TCP_NODELAY"))
|
||||
s:taboption(tab, Flag, "reuse_port", translate("Enable SO_REUSEPORT"))
|
||||
end
|
||||
|
||||
|
@ -137,7 +139,6 @@ function cfgvalue_overview(sdata)
|
|||
cfgvalue_overview_(sdata, lines, names_options_common)
|
||||
cfgvalue_overview_(sdata, lines, {
|
||||
"bind_address",
|
||||
"manager_address",
|
||||
})
|
||||
elseif stype == "ss_local" or stype == "ss_redir" or stype == "ss_tunnel" then
|
||||
cfgvalue_overview_(sdata, lines, names_options_client)
|
||||
|
|
Loading…
Reference in a new issue