summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-05-29 15:23:12 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-05-29 15:23:12 +0200
commit388a1dea5963efd39316c608b9f45cbd108b7345 (patch)
tree67ecf31751e010216a791f1278f55ee76df86747
parent193c1b756ee566c173f2c1e35ae97c0577ce566d (diff)
downloadmullvadvpn-388a1dea5963efd39316c608b9f45cbd108b7345.tar.xz
mullvadvpn-388a1dea5963efd39316c608b9f45cbd108b7345.zip
Trim whitespace
-rw-r--r--ios/PacketTunnel/PacketTunnelProvider.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/ios/PacketTunnel/PacketTunnelProvider.swift b/ios/PacketTunnel/PacketTunnelProvider.swift
index 914bce9c2c..4b4fedf307 100644
--- a/ios/PacketTunnel/PacketTunnelProvider.swift
+++ b/ios/PacketTunnel/PacketTunnelProvider.swift
@@ -13,24 +13,24 @@ class PacketTunnelProvider: NEPacketTunnelProvider {
override func startTunnel(options: [String : NSObject]?, completionHandler: @escaping (Error?) -> Void) {
// Add code here to start the process of connecting the tunnel.
}
-
+
override func stopTunnel(with reason: NEProviderStopReason, completionHandler: @escaping () -> Void) {
// Add code here to start the process of stopping the tunnel.
completionHandler()
}
-
+
override func handleAppMessage(_ messageData: Data, completionHandler: ((Data?) -> Void)?) {
// Add code here to handle the message.
if let handler = completionHandler {
handler(messageData)
}
}
-
+
override func sleep(completionHandler: @escaping () -> Void) {
// Add code here to get ready to sleep.
completionHandler()
}
-
+
override func wake() {
// Add code here to wake up.
}