diff options
author | Parménides GV <parmegv@sdf.org> | 2013-11-07 21:26:07 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-11-07 21:26:07 +0100 |
commit | 6ff02fbc614756991220dacf910dc447a4046f06 (patch) | |
tree | e6188b2f7526d519fbaa40bbedbd99f94b9df8f0 /src/se/leap/openvpn/VpnProfile.java | |
parent | dd7c9914165dd85f2eff0ad3872995c83678cfcb (diff) |
Special debug log: "OpenVPN log" tag
The log shows all state commands, and notifies when bytecount values have not changed more than 3 times in a row.
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"; |