summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ocserv/luasrc/model
diff options
context:
space:
mode:
authorRaymond Tau <raymondtau@gmail.com>2018-03-13 02:15:22 +0800
committerRaymond Tau <raymondtau@gmail.com>2018-03-13 02:15:22 +0800
commitee87dd1daa7fe34e66091f527f38a8f5fbc38ab9 (patch)
treec5ef64f078a2b17c1e7e7c5a2dcbb358b3bce7f3 /applications/luci-app-ocserv/luasrc/model
parent28e3b328545529c19429ce88c7d1769e64e2de0f (diff)
luci-app-ocserv: match default value of compression
Modify the default setting of compression to match the default value of the package ocserv. Signed-off-by: Raymond Tau <raymondtau@gmail.com>
Diffstat (limited to 'applications/luci-app-ocserv/luasrc/model')
-rw-r--r--applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua b/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua
index 74edaf489..396dedd4a 100644
--- a/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua
+++ b/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua
@@ -86,7 +86,7 @@ pip.default = "1"
local compr = s:taboption("general", Flag, "compression", translate("Enable compression"),
translate("Enable compression"))
-compr.default = "1"
+compr.default = "0"
local udp = s:taboption("general", Flag, "udp", translate("Enable UDP"),
translate("Enable UDP channel support; this must be enabled unless you know what you are doing"))