From: Yousong Zhou Date: Wed, 18 Nov 2015 05:34:24 +0000 (+0800) Subject: luci-proto-ppp: l2tp: allow specifying port in "server" option X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=09768ed74596e70ab7270a6eb7c96fa4afd1d85d;hp=862b84feb2bc860c049b4b6fa990f92291cb4728 luci-proto-ppp: l2tp: allow specifying port in "server" option Signed-off-by: Yousong Zhou --- diff --git a/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua b/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua index 523ef1bc6..5e8b3fcaa 100644 --- a/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua +++ b/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua @@ -8,7 +8,7 @@ local ipv6, defaultroute, metric, peerdns, dns, mtu server = section:taboption("general", Value, "server", translate("L2TP Server")) -server.datatype = "host" +server.datatype = "or(host, hostport)" username = section:taboption("general", Value, "username", translate("PAP/CHAP username"))