diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-06-30 10:33:06 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-06-30 10:50:27 +0200 |
| commit | d4a334427d175612cd276fc8f3def9dd43c1f9d3 (patch) | |
| tree | 4edc75b3c2c8f5c7a65751565cc203f04074b3d2 | |
| parent | 61bb327fa445d16f71a1f519d1d0585d83fb8bf8 (diff) | |
| download | mullvadvpn-d4a334427d175612cd276fc8f3def9dd43c1f9d3.tar.xz mullvadvpn-d4a334427d175612cd276fc8f3def9dd43c1f9d3.zip | |
Lower OpenVPN ping exit timeouts
| -rw-r--r-- | talpid_core/src/process/openvpn.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid_core/src/process/openvpn.rs b/talpid_core/src/process/openvpn.rs index 96e5f87aea..2d475d11c9 100644 --- a/talpid_core/src/process/openvpn.rs +++ b/talpid_core/src/process/openvpn.rs @@ -13,8 +13,8 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ &["--client"], &["--nobind"], &["--dev", "tun"], - &["--ping", "5"], - &["--ping-exit", "20"], + &["--ping", "3"], + &["--ping-exit", "15"], &["--connect-retry", "0", "0"], &["--connect-retry-max", "1"], &["--comp-lzo"], |
