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

Add multiqueue option to glorytun TCP

This commit is contained in:
Ycarus (Yannick Chabanois) 2020-05-05 09:54:20 +02:00
parent e4a6d5e4fb
commit c468d149d7
2 changed files with 3 additions and 1 deletions

View file

@ -9,4 +9,5 @@ config glorytun 'vpn'
option chacha20 '1' option chacha20 '1'
option mtuauto '1' option mtuauto '1'
option localip '10.255.255.2' option localip '10.255.255.2'
option remoteip '10.255.255.1' option remoteip '10.255.255.1'
option multiqueue '1'

View file

@ -74,6 +74,7 @@ start_instance() {
[ "${listener}" = "1" ] && procd_append_param command listener [ "${listener}" = "1" ] && procd_append_param command listener
[ "${mptcp}" = "1" ] && procd_append_param command mptcp [ "${mptcp}" = "1" ] && procd_append_param command mptcp
[ "${chacha20}" = "1" ] && procd_append_param command chacha20 [ "${chacha20}" = "1" ] && procd_append_param command chacha20
[ "${multiqueue}" = "1" ] && procd_append_param command multiqueue
procd_append_param command \ procd_append_param command \
retry count -1 const 500000 \ retry count -1 const 500000 \