luci-proto-openconnect: Add options proxy server and reconnect timeout support

Signed-off-by: David Bentham <db260179@gmail.com>
This commit is contained in:
David Bentham 2022-09-10 14:30:37 +01:00
parent b3e1f956e6
commit 1f25483953

View file

@ -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)';
}
});