diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-10-22 23:02:26 +0200 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-10-22 23:02:26 +0200 | 
| commit | 86d9cc5eba96c51d5c2866b46afdb1d134563d0b (patch) | |
| tree | 1c3fa487fb8c13adcb49200ffdadac9fc059f11a | |
| parent | 2d90483cf39feb89bb5ba2262513cb2a586490db (diff) | |
Increase default retry time for resolve to 60 seconds. 5 seconds does more harm than good
| -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 392202b4..bdfdd70a 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -196,7 +196,7 @@ public class VpnProfile implements  Serializable{  		// quit after 5 tries  		cfg+="connect-retry-max 5\n"; -		cfg+="resolv-retry 5\n"; +		cfg+="resolv-retry 60\n";  | 
