1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Increase ShadowSocks timeout

This commit is contained in:
Ycarus 2018-06-19 11:05:05 +02:00
parent c459722b8b
commit 0f524f175b
2 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ if [ "$NBCPU" -gt 2 ]; then
set shadowsocks-libev.hi$c.local_address="0.0.0.0"
set shadowsocks-libev.hi$c.local_port=1100
set shadowsocks-libev.hi$c.mode=tcp_and_udp
set shadowsocks-libev.hi$c.timeout=200
set shadowsocks-libev.hi$c.timeout=400
set shadowsocks-libev.hi$c.fast_open=1
set shadowsocks-libev.hi$c.reuse_port=1
set shadowsocks-libev.hi$c.mptcp=1
@ -21,14 +21,14 @@ if [ "$NBCPU" -gt 2 ]; then
fi
fi
if [ "$(uci -q get shadowsocks-libev.hi.timeout)" != "200" ]; then
if [ "$(uci -q get shadowsocks-libev.hi.timeout)" != "400" ]; then
uci -q batch <<-EOF > /dev/null
set shadowsocks-libev.hi.timeout=200
set shadowsocks-libev.hi.timeout=400
commit shadowsocks-libev
EOF
for c in $(seq 2 $NBCPU); do
uci -q batch <<-EOF > /dev/null
set shadowsocks-libev.hi$c.timeout=200
set shadowsocks-libev.hi$c.timeout=400
commit shadowsocks-libev
EOF
done

View file

@ -3,7 +3,7 @@ config ss_redir hi
option local_address '::'
option local_port '1100'
option mode 'tcp_and_udp'
option timeout '200'
option timeout '400'
option fast_open 1
option verbose 0
option reuse_port 1
@ -15,7 +15,7 @@ config ss_redir hi2
option local_address '0.0.0.0'
option local_port '1100'
option mode 'tcp_and_udp'
option timeout '200'
option timeout '400'
option fast_open 1
option verbose 0
option reuse_port 1