diff options
| -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"], |
