passepartout-apple/Passepartout/Sources/GroupConstants.swift

67 lines
2.0 KiB
Swift

//
// GroupConstants.swift
// Passepartout
//
// Created by Davide De Rosa on 6/7/18.
// Copyright (c) 2018 Davide De Rosa. All rights reserved.
//
// https://github.com/keeshux
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import Foundation
class GroupConstants {
class App {
static let name = "Passepartout"
static let tunnelKitName = "TunnelKit"
static let title = name
// static let title = "\u{1F511}"
static var version: String? {
guard let info = Bundle.main.infoDictionary else {
return nil
}
let versionNumber = info["CFBundleShortVersionString"] as! String
let buildNumber = info[kCFBundleVersionKey as String] as! String
return "\(versionNumber) (\(buildNumber))"
}
static let teamId = "5357M5NW9W"
static let appId = "1433648537"
#if os(iOS)
static let appGroup = "group.com.algoritmico.Passepartout"
static let tunnelIdentifier = "com.algoritmico.ios.Passepartout.Tunnel"
#else
static let appGroup = "\(teamId).group.com.algoritmico.Passepartout"
static let tunnelIdentifier = "com.algoritmico.macos.Passepartout.Tunnel"
#endif
}
class VPN {
static let dnsTimeout = 5000
static let sessionMarker = "--- EOF ---"
}
}