mirror of
https://github.com/openwrt/luci.git
synced 2026-01-13 17:50:23 +04:00
luci-proto-openconnect: allow setting mtu, password2
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
@@ -43,6 +43,8 @@ section:taboption("general", Value, "authgroup", translate("Auth Group"))
|
|||||||
username = section:taboption("general", Value, "username", translate("Username"))
|
username = section:taboption("general", Value, "username", translate("Username"))
|
||||||
password = section:taboption("general", Value, "password", translate("Password"))
|
password = section:taboption("general", Value, "password", translate("Password"))
|
||||||
password.password = true
|
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)"))
|
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")
|
value = value:gsub("\r\n?", "\n")
|
||||||
nixio.fs.writefile(oc_ca_file, value)
|
nixio.fs.writefile(oc_ca_file, value)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU"))
|
||||||
|
mtu.placeholder = "1406"
|
||||||
|
mtu.datatype = "max(9200)"
|
||||||
|
|||||||
Reference in New Issue
Block a user