summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-10-08 11:31:07 +0200
committerLinus Färnstrand <linus@mullvad.net>2018-10-08 11:31:07 +0200
commitc16b7bb907227c5bd186c03f49829ddb652815b4 (patch)
treecba4aa301fd77c299903f60fc11c6ba3d8200a96
parent17fbe2e88c9c8985016ff78e41ede3ea647cdce3 (diff)
parent30add0bfe16528c385877d77715735d1fdf27be9 (diff)
downloadmullvadvpn-c16b7bb907227c5bd186c03f49829ddb652815b4.tar.xz
mullvadvpn-c16b7bb907227c5bd186c03f49829ddb652815b4.zip
Merge branch 'remove-comp-parameter'
-rw-r--r--CHANGELOG.md4
-rw-r--r--talpid-core/src/process/openvpn.rs1
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"],