diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-06-12 10:29:34 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-06-12 10:29:34 +0200 |
commit | 701534f7cf7f9d39917841190f46b0c8aa93fcd4 (patch) | |
tree | df23be0e924c9648acb7ccb056e61b6c22860bd0 /src/de | |
parent | d6f8b2511137905c67cf046d51894dee665ca39d (diff) |
Always use tcp-client instead of tcp to allow static keys with tcp
Diffstat (limited to 'src/de')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
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"; |