summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmīls <emils@mullvad.net>2026-01-19 18:06:56 +0100
committerEmīls <emils@mullvad.net>2026-01-20 17:55:33 +0100
commitb25442de21ab8a3af2fe85d4dbaf9ac53e0cba27 (patch)
treeaf8ffef95c5651053a66dccb23ced024988523f7
parent2433f6125c6bd715d56e61e9f42a729fe5c466b8 (diff)
downloadmullvadvpn-b25442de21ab8a3af2fe85d4dbaf9ac53e0cba27.tar.xz
mullvadvpn-b25442de21ab8a3af2fe85d4dbaf9ac53e0cba27.zip
Bump poll rate to half-a-second
-rw-r--r--ios/MullvadVPN/TunnelManager/TunnelManager.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/MullvadVPN/TunnelManager/TunnelManager.swift b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
index 105caba856..a743f16666 100644
--- a/ios/MullvadVPN/TunnelManager/TunnelManager.swift
+++ b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
@@ -20,11 +20,11 @@ import WireGuardKitTypes
/// Interval used for periodic polling of tunnel relay status when tunnel is establishing
/// connection.
-private let establishingTunnelStatusPollInterval: Duration = .milliseconds(250)
+private let establishingTunnelStatusPollInterval: Duration = .milliseconds(500)
/// Interval used for periodic polling of tunnel connectivity status once the tunnel connection
/// is established.
-private let establishedTunnelStatusPollInterval: Duration = .milliseconds(250)
+private let establishedTunnelStatusPollInterval: Duration = .milliseconds(500)
/// A class that provides a convenient interface for VPN tunnels configuration, manipulation and
/// monitoring.