diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-11-13 16:34:14 -0800 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-11-13 16:34:14 -0800 |
commit | 5e2588f199edef2c54d6357c53e4bcbcb148d5a9 (patch) | |
tree | e810f9223bea26e9a3be2964c11340f6871275a3 /src/se/leap/openvpn/VpnProfile.java | |
parent | 81c880130a3eac273d6d8dfdc054a3fd1eb5a24e (diff) | |
parent | 5b772c23c3f45405f30de4a180fe47dbcb2fdfc4 (diff) |
Merge branch 'bug/vpn-reconnect-sometimes-hangs' into develop
Diffstat (limited to 'src/se/leap/openvpn/VpnProfile.java')
-rw-r--r-- | src/se/leap/openvpn/VpnProfile.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/se/leap/openvpn/VpnProfile.java b/src/se/leap/openvpn/VpnProfile.java index 8eebb763..41cf574b 100644 --- a/src/se/leap/openvpn/VpnProfile.java +++ b/src/se/leap/openvpn/VpnProfile.java @@ -108,7 +108,7 @@ public class VpnProfile implements Serializable{ public String mKeyPassword=""; public boolean mPersistTun = false; public String mConnectRetryMax="5"; - public String mConnectRetry="5"; + public String mConnectRetry="10"; public boolean mUserEditable=true; static final String MINIVPN = "miniopenvpn"; @@ -211,7 +211,7 @@ public class VpnProfile implements Serializable{ cfg+="connect-retry-max " + mConnectRetryMax+ "\n"; if(mConnectRetry==null) - mConnectRetry="5"; + mConnectRetry="10"; cfg+="connect-retry " + mConnectRetry + "\n"; |