From: David Bentham Date: Sat, 10 Sep 2022 13:30:37 +0000 (+0100) Subject: luci-proto-openconnect: Add options proxy server and reconnect timeout support X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=b3b551f03575cd6e7aef8f6caa0852b741f733f6;p=project%2Fluci.git luci-proto-openconnect: Add options proxy server and reconnect timeout support Signed-off-by: David Bentham (cherry picked from commit 1f25483953dc20e2d8521a1b8f9528420b5b817a) --- 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)'; } });