Merge pull request #559 from Arnie97/add-openvpn-proto
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 3 Dec 2015 15:42:58 +0000 (16:42 +0100)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 3 Dec 2015 15:42:58 +0000 (16:42 +0100)
luci-app-openvpn: Add udp6 and tcp6 to proto

applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua

index 561b0dd..e75203d 100644 (file)
@@ -24,7 +24,7 @@ local basicParams = {
        { ListValue,"comp_lzo",{"yes","no","adaptive"}, translate("Use fast LZO compression") },
        { Value,"keepalive","10 60", translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") },
 
-       { ListValue,"proto",{ "udp", "tcp" }, translate("Use protocol") },
+       { ListValue,"proto",{ "udp", "udp6", "tcp", "tcp6" }, translate("Use protocol") },
 
        { Flag,"client",0, translate("Configure client mode") },
        { Flag,"client_to_client",0, translate("Allow client-to-client traffic") },