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
197dd62ad3
commit
ef2a2962e1
2 changed files with 2 additions and 4 deletions
|
@ -14,7 +14,7 @@ include $(TOPDIR)/rules.mk
|
||||||
#
|
#
|
||||||
PKG_NAME:=shadowsocks-libev
|
PKG_NAME:=shadowsocks-libev
|
||||||
PKG_VERSION:=3.1.2
|
PKG_VERSION:=3.1.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$(PKG_VERSION)
|
||||||
|
|
|
@ -117,7 +117,6 @@ ss_xxx() {
|
||||||
[ "$verbose" = 0 ] || procd_append_param command -v
|
[ "$verbose" = 0 ] || procd_append_param command -v
|
||||||
[ "$no_delay" = 0 ] || procd_append_param command --no-delay
|
[ "$no_delay" = 0 ] || procd_append_param command --no-delay
|
||||||
[ -z "$bind_address" ] || procd_append_param command -b "$bind_address"
|
[ -z "$bind_address" ] || procd_append_param command -b "$bind_address"
|
||||||
[ -z "$manager_address" ] || procd_append_param command --manager-address "$manager_address"
|
|
||||||
procd_set_param file "$confjson"
|
procd_set_param file "$confjson"
|
||||||
procd_set_param respawn
|
procd_set_param respawn
|
||||||
procd_close_instance
|
procd_close_instance
|
||||||
|
@ -306,8 +305,7 @@ validate_ss_server_section() {
|
||||||
validate_common_server_options_ ss_server "$1" \
|
validate_common_server_options_ ss_server "$1" \
|
||||||
validate_common_options_ \
|
validate_common_options_ \
|
||||||
"${2}" \
|
"${2}" \
|
||||||
'bind_address:ipaddr' \
|
'bind_address:ipaddr'
|
||||||
'manager_address:host'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
validate_ss_tunnel_section() {
|
validate_ss_tunnel_section() {
|
||||||
|
|
Loading…
Reference in a new issue