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

Fix glorytun proto uppercase

This commit is contained in:
Ycarus 2018-02-07 15:00:38 +01:00
parent bd56e06dd9
commit 0f5c8a92dc
4 changed files with 7 additions and 7 deletions

View file

@ -5,4 +5,4 @@ config glorytun 'vpn'
option dev 'tun0'
option key 'secretkey'
option mptcp '1'
option proto 'tcp'
option proto 'TCP'

View file

@ -39,7 +39,7 @@ start_instance() {
}
[ "${enable}" = "1" ] || return 1
[ "${proto}" = "tcp" ] || return 1
[ "${proto}" = "TCP" ] || return 1
[ -n "${key}" ] || return 1
[ -n "${port}" ] || return 1
[ -n "${dev}" ] || return 1