diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-21 19:43:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-21 19:43:25 +0000 |
commit | a0d1420aa2bdf877e991db3e348c5097abfc6bcf (patch) | |
tree | ec5802223a7fb952225a3809015cf8958a65332e /protocols/ppp | |
parent | 629e3db294769d1fa76a2271756e8d6611fa59de (diff) |
protocols/ppp: remove obsolete pptp buffering option
Diffstat (limited to 'protocols/ppp')
-rw-r--r-- | protocols/ppp/luasrc/model/cbi/admin_network/proto_pptp.lua | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/protocols/ppp/luasrc/model/cbi/admin_network/proto_pptp.lua b/protocols/ppp/luasrc/model/cbi/admin_network/proto_pptp.lua index fb8a9ac8a..bf612f428 100644 --- a/protocols/ppp/luasrc/model/cbi/admin_network/proto_pptp.lua +++ b/protocols/ppp/luasrc/model/cbi/admin_network/proto_pptp.lua @@ -1,7 +1,7 @@ --[[ LuCI - Lua Configuration Interface -Copyright 2011 Jo-Philipp Wich <xm@subsignal.org> +Copyright 2011-2012 Jo-Philipp Wich <xm@subsignal.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -13,7 +13,7 @@ You may obtain a copy of the License at local map, section, net = ... local server, username, password -local buffering, defaultroute, metric, peerdns, dns +local defaultroute, metric, peerdns, dns server = section:taboption("general", Value, "server", translate("VPN Server")) @@ -27,10 +27,6 @@ password = section:taboption("general", Value, "password", translate("PAP/CHAP p password.password = true -buffering = section:taboption("advanced", Flag, "buffering", translate("Enable buffering")) -buffering.default = buffering.enabled - - defaultroute = section:taboption("advanced", Flag, "defaultroute", translate("Use default gateway"), translate("If unchecked, no default route is configured")) |