diff options
| author | Emīls <emils@mullvad.net> | 2026-01-19 18:06:56 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2026-01-20 17:55:33 +0100 |
| commit | b25442de21ab8a3af2fe85d4dbaf9ac53e0cba27 (patch) | |
| tree | af8ffef95c5651053a66dccb23ced024988523f7 | |
| parent | 2433f6125c6bd715d56e61e9f42a729fe5c466b8 (diff) | |
| download | mullvadvpn-b25442de21ab8a3af2fe85d4dbaf9ac53e0cba27.tar.xz mullvadvpn-b25442de21ab8a3af2fe85d4dbaf9ac53e0cba27.zip | |
Bump poll rate to half-a-second
| -rw-r--r-- | ios/MullvadVPN/TunnelManager/TunnelManager.swift | 4 |
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. |
