summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/ConfigParser.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-07-10 23:00:52 +0200
committerArne Schwabe <arne@rfc2549.org>2012-07-10 23:00:52 +0200
commit951bc8dd9532a772db610aff59af2d96a6ab05db (patch)
treeecf0ef50c1ea21059b2f8480ed0da1717172161d /src/de/blinkt/openvpn/ConfigParser.java
parentda3d649cfa356873b72e6c25b9c0496268efcf89 (diff)
Fine tune config convert messages
Import tls-auth [inline] dir correctly (closes issue #55)
Diffstat (limited to 'src/de/blinkt/openvpn/ConfigParser.java')
-rw-r--r--src/de/blinkt/openvpn/ConfigParser.java21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/de/blinkt/openvpn/ConfigParser.java b/src/de/blinkt/openvpn/ConfigParser.java
index 1b07178e..e1b426fa 100644
--- a/src/de/blinkt/openvpn/ConfigParser.java
+++ b/src/de/blinkt/openvpn/ConfigParser.java
@@ -279,14 +279,19 @@ public class ConfigParser {
}
np.mCustomRoutes=routeopt;
}
-
- Vector<String> tlsauth = getOption("tls-auth", 1, 2);
- if(tlsauth!=null)
- {
- np.mUseTLSAuth=true;
- np.mTLSAuthFilename=tlsauth.get(1);
- if(tlsauth.size()==3)
- np.mTLSAuthDirection=tlsauth.get(2);
+
+ // Also recognize tls-auth [inline] direction ...
+ Vector<Vector<String>> tlsauthoptions = getAllOption("tls-auth", 1, 2);
+ for(Vector<String> tlsauth:tlsauthoptions) {
+ if(tlsauth!=null)
+ {
+ if(!tlsauth.get(1).equals("[inline]")) {
+ np.mTLSAuthFilename=tlsauth.get(1);
+ np.mUseTLSAuth=true;
+ }
+ if(tlsauth.size()==3)
+ np.mTLSAuthDirection=tlsauth.get(2);
+ }
}
Vector<String> direction = getOption("key-direction", 1, 1);