diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2020-01-08 11:36:11 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2020-01-08 11:47:28 +0100 |
| commit | eab97673e4d9917fda16d1cec572b5744341dc71 (patch) | |
| tree | ea7d8cf722715e8b08698e2c80014ddbbe45d421 /talpid-core/src | |
| parent | 17586c0ab88afd639611feec66f4b3850d531959 (diff) | |
| download | mullvadvpn-eab97673e4d9917fda16d1cec572b5744341dc71.tar.xz mullvadvpn-eab97673e4d9917fda16d1cec572b5744341dc71.zip | |
Increase OpenVPN ping timeout from 20 to 25 seconds
20 seconds is already long. But multiple users report
that their tunnels drop out more frequently than
on vanilla OpenVPN. So let's see if increasing this helps
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/process/openvpn.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/process/openvpn.rs b/talpid-core/src/process/openvpn.rs index da18d87074..e07be4fa16 100644 --- a/talpid-core/src/process/openvpn.rs +++ b/talpid-core/src/process/openvpn.rs @@ -21,7 +21,7 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ #[cfg(windows)] &["--dev-type", "tun"], &["--ping", "4"], - &["--ping-exit", "20"], + &["--ping-exit", "25"], &["--connect-timeout", "30"], &["--connect-retry", "0", "0"], &["--connect-retry-max", "1"], |
