summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2022-03-15 10:51:04 +0100
committerAndrej Mihajlov <and@mullvad.net>2022-03-15 10:51:04 +0100
commitbbff048e0781a77fa4ae8a02ced14f08b4b4e974 (patch)
tree70ac227e0e7b8711f463529f48426344023eddde /ios/MullvadVPN
parent2742d8a5bac9d14a08c17e47e4cd4cdbc5a2ae66 (diff)
parentcf2dd603d9ed4703861dc454e144c8f2e16f1a58 (diff)
downloadmullvadvpn-bbff048e0781a77fa4ae8a02ced14f08b4b4e974.tar.xz
mullvadvpn-bbff048e0781a77fa4ae8a02ced14f08b4b4e974.zip
Merge branch 'remove-go-runtime-gui'
Diffstat (limited to 'ios/MullvadVPN')
-rw-r--r--ios/MullvadVPN/IPAddressRange+Codable.swift2
-rw-r--r--ios/MullvadVPN/PrivateKeyWithMetadata.swift4
-rw-r--r--ios/MullvadVPN/REST/RESTClient.swift4
-rw-r--r--ios/MullvadVPN/TunnelManager/SetAccountOperation.swift2
-rw-r--r--ios/MullvadVPN/TunnelManager/TunnelManager.swift2
-rw-r--r--ios/MullvadVPN/TunnelSettings.swift4
6 files changed, 9 insertions, 9 deletions
diff --git a/ios/MullvadVPN/IPAddressRange+Codable.swift b/ios/MullvadVPN/IPAddressRange+Codable.swift
index 79f9e00a65..57df3d1ac2 100644
--- a/ios/MullvadVPN/IPAddressRange+Codable.swift
+++ b/ios/MullvadVPN/IPAddressRange+Codable.swift
@@ -7,7 +7,7 @@
//
import Foundation
-import struct WireGuardKit.IPAddressRange
+import struct WireGuardKitTypes.IPAddressRange
extension IPAddressRange: Codable {
public func encode(to encoder: Encoder) throws {
diff --git a/ios/MullvadVPN/PrivateKeyWithMetadata.swift b/ios/MullvadVPN/PrivateKeyWithMetadata.swift
index fb39027817..04e73f784c 100644
--- a/ios/MullvadVPN/PrivateKeyWithMetadata.swift
+++ b/ios/MullvadVPN/PrivateKeyWithMetadata.swift
@@ -7,8 +7,8 @@
//
import Foundation
-import class WireGuardKit.PrivateKey
-import class WireGuardKit.PublicKey
+import class WireGuardKitTypes.PrivateKey
+import class WireGuardKitTypes.PublicKey
/// A struct holding a private WireGuard key with associated metadata
struct PrivateKeyWithMetadata: Equatable {
diff --git a/ios/MullvadVPN/REST/RESTClient.swift b/ios/MullvadVPN/REST/RESTClient.swift
index b58822d4cd..1f60e8b598 100644
--- a/ios/MullvadVPN/REST/RESTClient.swift
+++ b/ios/MullvadVPN/REST/RESTClient.swift
@@ -8,8 +8,8 @@
import Foundation
import Network
-import class WireGuardKit.PublicKey
-import struct WireGuardKit.IPAddressRange
+import class WireGuardKitTypes.PublicKey
+import struct WireGuardKitTypes.IPAddressRange
extension REST {
diff --git a/ios/MullvadVPN/TunnelManager/SetAccountOperation.swift b/ios/MullvadVPN/TunnelManager/SetAccountOperation.swift
index f20986d118..f09ee90f68 100644
--- a/ios/MullvadVPN/TunnelManager/SetAccountOperation.swift
+++ b/ios/MullvadVPN/TunnelManager/SetAccountOperation.swift
@@ -7,7 +7,7 @@
//
import Foundation
-import class WireGuardKit.PublicKey
+import class WireGuardKitTypes.PublicKey
import Logging
class SetAccountOperation: AsyncOperation {
diff --git a/ios/MullvadVPN/TunnelManager/TunnelManager.swift b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
index 9fa6de52d7..96cf744505 100644
--- a/ios/MullvadVPN/TunnelManager/TunnelManager.swift
+++ b/ios/MullvadVPN/TunnelManager/TunnelManager.swift
@@ -11,7 +11,7 @@ import Foundation
import NetworkExtension
import UIKit
import Logging
-import class WireGuardKit.PublicKey
+import class WireGuardKitTypes.PublicKey
/// A class that provides a convenient interface for VPN tunnels configuration, manipulation and
/// monitoring.
diff --git a/ios/MullvadVPN/TunnelSettings.swift b/ios/MullvadVPN/TunnelSettings.swift
index aa0554d3c2..a9d8c5b063 100644
--- a/ios/MullvadVPN/TunnelSettings.swift
+++ b/ios/MullvadVPN/TunnelSettings.swift
@@ -8,8 +8,8 @@
import Foundation
import struct Network.IPv4Address
-import class WireGuardKit.PublicKey
-import struct WireGuardKit.IPAddressRange
+import class WireGuardKitTypes.PublicKey
+import struct WireGuardKitTypes.IPAddressRange
/// A struct that holds a tun interface configuration.
struct InterfaceSettings: Codable, Equatable {