From e4f45f6432064e907ae209f1606f28e1082a86c1 Mon Sep 17 00:00:00 2001 From: Ycarus Date: Wed, 7 Feb 2018 15:30:28 +0100 Subject: [PATCH] glorytun-udp doesn't support mptcp --- glorytun-udp/init | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/glorytun-udp/init b/glorytun-udp/init index 470a2e3c7..99cd1bcc0 100755 --- a/glorytun-udp/init +++ b/glorytun-udp/init @@ -21,7 +21,6 @@ _err() { validate_section() { uci_validate_section glorytun glorytun "${1}" \ 'enable:bool:0' \ - 'mptcp:bool:0' \ 'key:string' \ 'host:host' \ 'port:port' \ @@ -34,7 +33,7 @@ validate_section() { } start_instance() { - local enable key host port dev listener mptcp proto bind bindport mtu mtuauto + local enable key host port dev listener proto bind bindport mtu mtuauto validate_section "${1}" || { _err "validation failed" @@ -61,7 +60,6 @@ start_instance() { ${host:+host "$host"} \ ${bind:+bind} ${bindport:+bind-port} - ${mptcp:+mptcp} \ ${dev:+dev "$dev"} \ ${mtu:+mtu "$mtu"} \ ${mtuauto:+mtu-auto} \