summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKalle Lindström <karl.lindstrom@mullvad.net>2025-08-28 10:32:36 +0200
committerKalle Lindström <karl.lindstrom@mullvad.net>2025-08-28 10:32:36 +0200
commit08f9a8abf2603970b2dc5d425b207d15d1322c7e (patch)
tree5b30b66ae4787288b4084835b09454d549c4b3dd
parenteb3954f466a7dd19adf3883dc94c7c12f8990834 (diff)
parentac169b61431e0dc26c99d5679909117a8d4d97a5 (diff)
downloadmullvadvpn-08f9a8abf2603970b2dc5d425b207d15d1322c7e.tar.xz
mullvadvpn-08f9a8abf2603970b2dc5d425b207d15d1322c7e.zip
Merge branch 'enable-quantum-resistant-tunnels-droid-1838'
-rw-r--r--mullvad-types/src/wireguard.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mullvad-types/src/wireguard.rs b/mullvad-types/src/wireguard.rs
index fc2c5fb44c..6ef5cde05e 100644
--- a/mullvad-types/src/wireguard.rs
+++ b/mullvad-types/src/wireguard.rs
@@ -11,12 +11,12 @@ pub const MAX_ROTATION_INTERVAL: Duration = Duration::from_secs(30 * 24 * 60 * 6
pub const DEFAULT_ROTATION_INTERVAL: Duration = MAX_ROTATION_INTERVAL;
/// Whether to enable or disable quantum resistant tunnels when the setting is set to
-/// `QuantumResistantState::Auto`. It is currently enabled by default on desktop,
-/// but disabled on Android.
+/// `QuantumResistantState::Auto`. It is currently enabled by default on all platforms.
const QUANTUM_RESISTANT_AUTO_STATE: bool = cfg!(any(
target_os = "linux",
target_os = "macos",
- target_os = "windows"
+ target_os = "windows",
+ target_os = "android"
));
#[derive(Serialize, Deserialize, Default, Copy, Clone, Debug, PartialEq, Eq)]