diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-10-08 10:33:02 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-10-08 11:14:58 +0200 |
| commit | 30add0bfe16528c385877d77715735d1fdf27be9 (patch) | |
| tree | cba4aa301fd77c299903f60fc11c6ba3d8200a96 | |
| parent | 17fbe2e88c9c8985016ff78e41ede3ea647cdce3 (diff) | |
| download | mullvadvpn-30add0bfe16528c385877d77715735d1fdf27be9.tar.xz mullvadvpn-30add0bfe16528c385877d77715735d1fdf27be9.zip | |
Remove comp-lzo OpenVPN setting
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | talpid-core/src/process/openvpn.rs | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e5c2a76c8..607f794303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,10 @@ Line wrap the file at 100 chars. Th #### Linux - Moved CLI binary to `/usr/bin/` as to have the CLI binary in the user's `$PATH` by default. +### Removed +- Remove `--comp-lzo` argument to OpenVPN. Disables any possibility of establishing a VPN tunnel + with compression. + ### Fixed #### Windows - Use different method for identifying network interfaces during installation. diff --git a/talpid-core/src/process/openvpn.rs b/talpid-core/src/process/openvpn.rs index 550d6c4169..6cc91371a0 100644 --- a/talpid-core/src/process/openvpn.rs +++ b/talpid-core/src/process/openvpn.rs @@ -24,7 +24,6 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ &["--ping-exit", "15"], &["--connect-retry", "0", "0"], &["--connect-retry-max", "1"], - &["--comp-lzo"], &["--remote-cert-tls", "server"], &["--rcvbuf", "1048576"], &["--sndbuf", "1048576"], |
