summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-06-12 10:29:34 +0200
committerArne Schwabe <arne@rfc2549.org>2012-06-12 10:29:34 +0200
commit7dfa673e931656924ce4a85bec84441c46c5a5f5 (patch)
treeba759b01a75c17e52b4d063874824bdb6d0cb4b4 /src
parent6a52c2c3fc2e3de501dee507fa5bcc618dbdfd34 (diff)
Always use tcp-client instead of tcp to allow static keys with tcp
Diffstat (limited to 'src')
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java
index e800e3d3..d74701f5 100644
--- a/src/de/blinkt/openvpn/VpnProfile.java
+++ b/src/de/blinkt/openvpn/VpnProfile.java
@@ -192,7 +192,7 @@ public class VpnProfile implements Serializable{
if(mUseUdp)
cfg+=" udp\n";
else
- cfg+=" tcp\n";
+ cfg+=" tcp-client\n";