luci-proto-openconnect: allow setting mtu, password2

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry picked from commit cf8146ff67)
This commit is contained in:
Yousong Zhou 2017-04-30 16:47:47 +08:00 committed by Hannu Nyman
parent c79bb9641c
commit 914dfc32cc

View file

@ -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)"