diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2017-04-30 16:47:47 +0800 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2017-06-19 17:48:47 +0300 |
commit | 914dfc32ccd518917a44fe9ddc70ccf62ef202e1 (patch) | |
tree | 0ef4f76fad63205b035615feca5357fefa278a8c /protocols | |
parent | c79bb9641cffdb75bdff58b967af57bead8be358 (diff) |
luci-proto-openconnect: allow setting mtu, password2
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry picked from commit cf8146ff6779b5b97933d48a6eda8292b792b36b)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua b/protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua index 2057c8e2e..a602a4c66 100644 --- a/protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua +++ b/protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua @@ -43,6 +43,8 @@ section:taboption("general", Value, "authgroup", translate("Auth Group")) username = section:taboption("general", Value, "username", translate("Username")) password = section:taboption("general", Value, "password", translate("Password")) password.password = true +password2 = section:taboption("general", Value, "password2", translate("Password2")) +password2.password = true cert = section:taboption("advanced", Value, "usercert", translate("User certificate (PEM encoded)")) @@ -84,3 +86,7 @@ function ca.write(self, section, value) value = value:gsub("\r\n?", "\n") nixio.fs.writefile(oc_ca_file, value) end + +mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU")) +mtu.placeholder = "1406" +mtu.datatype = "max(9200)" |