NE: Show an alert when someone tries to start the VPN from iOS Settings

This commit is contained in:
Roopesh Chander 2018-11-01 18:54:08 +05:30
parent ae992c3deb
commit 79672fa920
1 changed files with 5 additions and 2 deletions

View File

@ -27,8 +27,11 @@ class PacketTunnelProvider: NEPacketTunnelProvider {
os_log("Starting tunnel", log: OSLog.default, type: .info)
guard let options = options else {
os_log("Starting tunnel failed: No options passed", log: OSLog.default, type: .error)
startTunnelCompletionHandler(PacketTunnelProviderError.invalidOptions)
os_log("Starting tunnel failed: No options passed. Possible connection request from preferences.", log: OSLog.default, type: .error)
// displayMessage is deprecated API
displayMessage("Please use the WireGuard app to start up WireGuard VPN configurations.") { (_) in
startTunnelCompletionHandler(PacketTunnelProviderError.invalidOptions)
}
return
}