luci-app-openvpn: sync code style with openvpn-advanced

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert 2018-11-21 12:46:29 +01:00
parent 95f02e9d84
commit 9881ad5a6b

View file

@ -7,32 +7,90 @@ local basicParams = {
-- --
-- Widget, Name, Default(s), Description -- Widget, Name, Default(s), Description
-- --
{ ListValue, "verb", { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, translate("Set output verbosity") }, { ListValue,
{ Value, "nice",0, translate("Change process priority") }, "verb",
{ Value,"port",1194, translate("TCP/UDP port # for both local and remote") }, { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 },
{ ListValue,"dev_type",{ "tun", "tap" }, translate("Type of used device") }, translate("Set output verbosity") },
{ Value,
{ Value,"ifconfig","10.200.200.3 10.200.200.1", translate("Set tun/tap adapter parameters") }, "nice",
{ Value,"server","10.200.200.0 255.255.255.0", translate("Configure server mode") }, 0,
{ Value,"server_bridge","192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254", translate("Configure server bridge") }, translate("Change process priority") },
{ Flag,"nobind",0, translate("Do not bind to local address and port") }, { Value,
"port",
{ Value,"keepalive","10 60", translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") }, 1194,
translate("TCP/UDP port # for both local and remote") },
{ ListValue,"proto",{ "udp", "tcp-client", "tcp-server" }, translate("Use protocol") }, { ListValue,
"dev_type",
{ Flag,"client",0, translate("Configure client mode") }, { "tun", "tap" },
{ Flag,"client_to_client",0, translate("Allow client-to-client traffic") }, translate("Type of used device") },
{ DynamicList,"remote","vpnserver.example.org", translate("Remote host name or ip address") }, { Value,
"ifconfig",
{ FileUpload,"secret","/etc/openvpn/secret.key", translate("Enable Static Key encryption mode (non-TLS)") }, "10.200.200.3 10.200.200.1",
{ ListValue,"key_direction", { 0, 1 }, translate("The key direction for 'tls-auth' and 'secret' options") }, translate("Set tun/tap adapter parameters") },
{ FileUpload,"pkcs12","/etc/easy-rsa/keys/some-client.pk12", translate("PKCS#12 file containing keys") }, { Value,
{ FileUpload,"ca","/etc/easy-rsa/keys/ca.crt", translate("Certificate authority") }, "server",
{ FileUpload,"dh","/etc/easy-rsa/keys/dh1024.pem", translate("Diffie Hellman parameters") }, "10.200.200.0 255.255.255.0",
{ FileUpload,"cert","/etc/easy-rsa/keys/some-client.crt", translate("Local certificate") }, translate("Configure server mode") },
{ FileUpload,"key","/etc/easy-rsa/keys/some-client.key", translate("Local private key") }, { Value,
{ Value,"config","/etc/openvpn/ovpn-file.ovpn", translate("Local OVPN configuration file") }, "server_bridge",
"192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254",
translate("Configure server bridge") },
{ Flag,
"nobind",
0,
translate("Do not bind to local address and port") },
{ Value,
"keepalive",
"10 60",
translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") },
{ ListValue,
"proto",
{ "udp", "tcp-client", "tcp-server" },
translate("Use protocol") },
{ Flag,
"client",
0,
translate("Configure client mode") },
{ Flag,
"client_to_client",
0,
translate("Allow client-to-client traffic") },
{ DynamicList,
"remote",
"vpnserver.example.org",
translate("Remote host name or ip address") },
{ FileUpload,
"secret",
"/etc/openvpn/secret.key",
translate("Enable Static Key encryption mode (non-TLS)") },
{ ListValue,
"key_direction",
{ 0, 1 },
translate("The key direction for 'tls-auth' and 'secret' options") },
{ FileUpload,
"pkcs12",
"/etc/easy-rsa/keys/some-client.pk12",
translate("PKCS#12 file containing keys") },
{ FileUpload,
"ca",
"/etc/easy-rsa/keys/ca.crt",
translate("Certificate authority") },
{ FileUpload,
"dh",
"/etc/easy-rsa/keys/dh1024.pem",
translate("Diffie Hellman parameters") },
{ FileUpload,
"cert",
"/etc/easy-rsa/keys/some-client.crt",
translate("Local certificate") },
{ FileUpload,
"key",
"/etc/easy-rsa/keys/some-client.key",
translate("Local private key") },
{ Value,
"config",
"/etc/openvpn/ovpn-file.ovpn",
translate("Local OVPN configuration file") },
} }