diff options
| author | David Lönnhager <david.l@mullvad.net> | 2020-09-29 13:13:39 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2020-11-24 18:50:03 +0100 |
| commit | 5fc78d71faf464e395078246ab4733c338067ba6 (patch) | |
| tree | ae1505c81357f080b6d8c9d815e3fa98420f2510 | |
| parent | e18346243fa3e84aad6167356a659a7efc770fec (diff) | |
| download | mullvadvpn-5fc78d71faf464e395078246ab4733c338067ba6.tar.xz mullvadvpn-5fc78d71faf464e395078246ab4733c338067ba6.zip | |
Force OpenVPN not to use netsh
| -rw-r--r-- | talpid-core/src/process/openvpn.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/talpid-core/src/process/openvpn.rs b/talpid-core/src/process/openvpn.rs index c196e1ca86..de5206a56b 100644 --- a/talpid-core/src/process/openvpn.rs +++ b/talpid-core/src/process/openvpn.rs @@ -45,6 +45,8 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ // The route manager is used to add the routes. #[cfg(target_os = "linux")] &["--route-noexec"], + #[cfg(windows)] + &["--ip-win32", "ipapi"], ]; static ALLOWED_TLS1_3_CIPHERS: &[&str] = |
