summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--talpid-types/src/net.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4eca6e818..4268335ef7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,7 +24,7 @@ Line wrap the file at 100 chars. Th
## [Unreleased]
### Added
-- Add option to enable or disable IPv6 on the tunnel interface.
+- Add option to enable or disable IPv6 on the tunnel interface. It's disabled by default.
- Log panics in the daemon to the log file.
- Warn in the Settings screen if a new version is available.
- Add a "blocked" state in the app that blocks the entire network and waits for user action when
diff --git a/talpid-types/src/net.rs b/talpid-types/src/net.rs
index 65c43e4ae4..31edfb7d48 100644
--- a/talpid-types/src/net.rs
+++ b/talpid-types/src/net.rs
@@ -148,7 +148,7 @@ impl Default for TunnelOptions {
fn default() -> Self {
TunnelOptions {
openvpn: OpenVpnTunnelOptions::default(),
- enable_ipv6: true,
+ enable_ipv6: false,
}
}
}