2018-08-30 11:57:50 +00:00
|
|
|
//
|
2019-05-19 12:04:41 +00:00
|
|
|
// CompressionFraming.swift
|
2018-08-30 11:57:50 +00:00
|
|
|
// TunnelKit
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 8/30/18.
|
2020-12-27 16:29:39 +00:00
|
|
|
// Copyright (c) 2021 Davide De Rosa. All rights reserved.
|
2018-08-30 11:57:50 +00:00
|
|
|
//
|
2019-05-14 08:58:47 +00:00
|
|
|
// https://github.com/passepartoutvpn
|
2018-08-30 11:57:50 +00:00
|
|
|
//
|
|
|
|
// This file is part of TunnelKit.
|
|
|
|
//
|
|
|
|
// TunnelKit 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.
|
|
|
|
//
|
|
|
|
// TunnelKit 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 TunnelKit. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2021-10-25 14:27:27 +00:00
|
|
|
import TunnelKitOpenVPNObjC
|
2018-08-30 11:57:50 +00:00
|
|
|
|
2019-05-19 12:04:41 +00:00
|
|
|
extension OpenVPN {
|
2018-08-30 23:39:39 +00:00
|
|
|
|
|
|
|
/// Defines the type of compression framing.
|
2018-09-04 20:18:24 +00:00
|
|
|
public enum CompressionFraming: Int, Codable, CustomStringConvertible {
|
2018-08-30 23:39:39 +00:00
|
|
|
|
|
|
|
/// No compression framing.
|
|
|
|
case disabled
|
|
|
|
|
2018-09-23 10:37:56 +00:00
|
|
|
/// Framing compatible with `comp-lzo` (deprecated in 2.4).
|
2018-08-30 23:39:39 +00:00
|
|
|
case compLZO
|
|
|
|
|
2018-08-30 23:57:51 +00:00
|
|
|
/// Framing compatible with 2.4 `compress`.
|
|
|
|
case compress
|
2021-07-16 16:11:37 +00:00
|
|
|
|
|
|
|
/// Framing compatible with 2.4 `compress` (version 2, e.g. stub-v2).
|
|
|
|
case compressV2
|
2018-08-30 23:57:51 +00:00
|
|
|
|
2018-08-30 23:39:39 +00:00
|
|
|
var native: CompressionFramingNative {
|
|
|
|
guard let val = CompressionFramingNative(rawValue: rawValue) else {
|
|
|
|
fatalError("Unhandled CompressionFraming bridging")
|
|
|
|
}
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: CustomStringConvertible
|
|
|
|
|
|
|
|
/// :nodoc:
|
|
|
|
public var description: String {
|
|
|
|
switch self {
|
|
|
|
case .disabled:
|
|
|
|
return "disabled"
|
|
|
|
|
|
|
|
case .compress:
|
|
|
|
return "compress"
|
|
|
|
|
2021-07-16 16:11:37 +00:00
|
|
|
case .compressV2:
|
|
|
|
return "compress"
|
|
|
|
|
2018-08-30 23:39:39 +00:00
|
|
|
case .compLZO:
|
|
|
|
return "comp-lzo"
|
|
|
|
}
|
2018-08-30 11:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|