summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2012-10-23 13:29:23 +0300
committerPatrik Flykt <patrik.flykt@linux.intel.com>2012-10-29 12:37:48 +0200
commit39e7dd43497a80f1637ae7de6887e77d7113d14c (patch)
tree6731e07ffff0e239ea53591e76192f5448594da3
parent4bf217329babf4f7792b43d70228af8269c3332c (diff)
downloadconnman-39e7dd43497a80f1637ae7de6887e77d7113d14c.tar.gz
connman-39e7dd43497a80f1637ae7de6887e77d7113d14c.tar.bz2
connman-39e7dd43497a80f1637ae7de6887e77d7113d14c.zip
openvpn: Add more options
Connman OpenVPN OpenVPN.NSCertType --ns-cert-type <client|server> OpenVPN.AskPass --askpass <file> OpenVPN.AuthNoCache --auth-nocache
-rw-r--r--plugins/openvpn.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/openvpn.c b/plugins/openvpn.c
index 8df8a3f3..c3e7bcd6 100644
--- a/plugins/openvpn.c
+++ b/plugins/openvpn.c
@@ -55,9 +55,12 @@ struct {
{ "OpenVPN.Cert", "--cert", 1 },
{ "OpenVPN.Key", "--key", 1 },
{ "OpenVPN.MTU", "--mtu", 1 },
+ { "OpenVPN.NSCertType", "--ns-cert-type", 1 },
{ "OpenVPN.Proto", "--proto", 1 },
{ "OpenVPN.Port", "--port", 1 },
{ "OpenVPN.AuthUserPass", "--auth-user-pass", 1 },
+ { "OpenVPN.AskPass", "--askpass", 1 },
+ { "OpenVPN.AuthNoCache", "--auth-nocache", 0 },
{ "OpenVPN.TLSRemote", "--tls-remote", 1 },
{ "OpenVPN.Cipher", "--cipher", 1 },
{ "OpenVPN.Auth", "--auth", 1 },