blob: a44e372365d5f9fa626c9017d231553020fbf4b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//
// ApplicationConfiguration.swift
// MullvadVPN
//
// Created by pronebird on 05/06/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import Foundation
import struct Network.IPv4Address
enum ApplicationConfiguration {}
extension ApplicationConfiguration {
/// The application group identifier used for sharing application preferences between processes
static let securityGroupIdentifier = "group.net.mullvad.MullvadVPN"
/// The application identifier for the PacketTunnel extension
static let packetTunnelExtensionIdentifier = "net.mullvad.MullvadVPN.PacketTunnel"
/// Container URL for security group
static var containerURL: URL? {
return FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: Self.securityGroupIdentifier)
}
/// The main application log file located in a shared container
static var mainApplicationLogFileURL: URL? {
return Self.containerURL?.appendingPathComponent("Logs/net.mullvad.MullvadVPN.log", isDirectory: false)
}
/// The packet tunnel log file located in a shared container
static var packetTunnelLogFileURL: URL? {
return Self.containerURL?.appendingPathComponent("Logs/net.mullvad.MullvadVPN.PacketTunnel.log", isDirectory: false)
}
/// All log files located in a shared container
static var logFileURLs: [URL] {
return [mainApplicationLogFileURL, packetTunnelLogFileURL].compactMap { $0 }
}
/// Default API endpoint
static let defaultAPIEndpoint = AnyIPEndpoint(string: "193.138.218.78:443")!
/// Background fetch minimum interval
static let minimumBackgroundFetchInterval: TimeInterval = 3600
/// App refresh background task identifier
static let appRefreshTaskIdentifier = "net.mullvad.MullvadVPN.AppRefresh"
/// Key rotation background task identifier
static let privateKeyRotationTaskIdentifier = "net.mullvad.MullvadVPN.PrivateKeyRotation"
/// API address background task identifier
static let addressCacheUpdateTaskIdentifier = "net.mullvad.MullvadVPN.AddressCacheUpdate"
}
|