summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js')
-rw-r--r--protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js b/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js
index 2c29614aee..91ad65cb34 100644
--- a/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js
+++ b/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js
@@ -116,6 +116,9 @@ return network.registerProtocol('openconnect', {
o = s.taboption('general', form.Value, 'password2', _('Password2'));
o.password = true;
+
+ o = s.taboption('general', form.Value, 'proxy', _('Proxy Server'));
+ o.optional = true;
o = s.taboption('general', form.TextValue, 'usercert', _('User certificate (PEM encoded)'));
o.rows = 10;
@@ -157,5 +160,10 @@ return network.registerProtocol('openconnect', {
o.optional = true;
o.placeholder = 1406;
o.datatype = 'range(68, 9200)';
+
+ o = s.taboption('advanced', form.Value, 'reconnect_timeout', _('Reconnect Timeout'));
+ o.optional = true;
+ o.placeholder = 300;
+ o.datatype = 'min(10)';
}
});