diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-09-13 15:40:28 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-09-13 15:40:28 +0200 |
commit | 3db962f03e73b68bbc173d1596642937784be2b7 (patch) | |
tree | 6d1139f2c3e9b0879ebaac75e25d46d558a9f5e9 | |
parent | 93213caa1c1456836dc0f9d2ade45eed1a3d4e4a (diff) |
set persist-tun Default to false. It does to play well with reconnects and DNS resolving
-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 404072b1..bc783fd0 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -101,7 +101,7 @@ public class VpnProfile implements Serializable{ public String mKeyPassword=""; static final String MINIVPN = "miniopenvpn"; - public boolean mPersistTun = true; + public boolean mPersistTun = false; public void clearDefaults() { |