diff options
-rwxr-xr-x | res/values/strings.xml | 2 | ||||
-rw-r--r-- | src/de/blinkt/openvpn/ConfigParser.java | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index ff0c592c..eea81d8b 100755 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -237,4 +237,4 @@ <string name="connectretrymessage">Number of seconds to wait between connection attempts.</string> <string name="connectretrywait">Seconds between connections</string> -</resources>
\ No newline at end of file +</resources> diff --git a/src/de/blinkt/openvpn/ConfigParser.java b/src/de/blinkt/openvpn/ConfigParser.java index ed8d4724..7d93a94e 100644 --- a/src/de/blinkt/openvpn/ConfigParser.java +++ b/src/de/blinkt/openvpn/ConfigParser.java @@ -451,6 +451,12 @@ public class ConfigParser { if(connectretrymax!=null) np.mConnectRetryMax =connectretrymax.get(1); + Vector<Vector<String>> remotetls = getAllOption("remote-tls", 1, 1); + if(remotetls!=null) + if(remotetls.get(1).equals("server")) + np.mExpectTLSCert=true; + else + options.put("remotetls",remotetls); Vector<String> authuser = getOption("auth-user-pass",0,1); if(authuser !=null){ |