summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2023-04-03 12:13:45 +0200
committerDavid Lönnhager <david.l@mullvad.net>2023-04-03 13:14:23 +0200
commitc25ea2b2ebf046d0ada02a2c6e6acfb5b2d01cb3 (patch)
treedf6efe509e0e47488a3892277f1efeec3725a0e5
parent01a9d56cc7802d69a9a1571fc2014e5543fa28e7 (diff)
downloadmullvadvpn-c25ea2b2ebf046d0ada02a2c6e6acfb5b2d01cb3.tar.xz
mullvadvpn-c25ea2b2ebf046d0ada02a2c6e6acfb5b2d01cb3.zip
Retry key rotation after 24 hours on iOS
-rw-r--r--ios/MullvadVPN/TunnelManager/TunnelManager.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/TunnelManager/TunnelManager.swift b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
index 196561af5e..74c2127059 100644
--- a/ios/MullvadVPN/TunnelManager/TunnelManager.swift
+++ b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
@@ -31,7 +31,7 @@ private let establishedTunnelStatusPollInterval: TimeInterval = 5
private let privateKeyRotationInterval: TimeInterval = 60 * 60 * 24 * 14
/// Private key rotation retry interval (in seconds).
-private let privateKeyRotationFailureRetryInterval: TimeInterval = 60 * 15
+private let privateKeyRotationFailureRetryInterval: TimeInterval = 60 * 60 * 24
/// A class that provides a convenient interface for VPN tunnels configuration, manipulation and
/// monitoring.