2019-05-19 10:16:09 +00:00
|
|
|
//
|
|
|
|
// IPv4Settings.swift
|
|
|
|
// TunnelKit
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 5/19/19.
|
2022-02-04 11:42:58 +00:00
|
|
|
// Copyright (c) 2022 Davide De Rosa. All rights reserved.
|
2019-05-19 10:16:09 +00:00
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
|
/// Encapsulates the IPv4 settings for the tunnel.
|
|
|
|
public struct IPv4Settings: Codable, CustomStringConvertible {
|
|
|
|
|
|
|
|
/// Represents an IPv4 route in the routing table.
|
|
|
|
public struct Route: Codable, CustomStringConvertible {
|
|
|
|
|
|
|
|
/// The destination host or subnet.
|
|
|
|
public let destination: String
|
|
|
|
|
|
|
|
/// The address mask.
|
|
|
|
public let mask: String
|
|
|
|
|
|
|
|
/// The address of the gateway (uses default gateway if not set).
|
|
|
|
public let gateway: String
|
|
|
|
|
2021-10-25 14:27:27 +00:00
|
|
|
public init(_ destination: String, _ mask: String?, _ gateway: String) {
|
2019-05-19 10:16:09 +00:00
|
|
|
self.destination = destination
|
|
|
|
self.mask = mask ?? "255.255.255.255"
|
|
|
|
self.gateway = gateway
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: CustomStringConvertible
|
|
|
|
|
|
|
|
public var description: String {
|
|
|
|
return "{\(destination.maskedDescription)/\(mask) \(gateway.maskedDescription)}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The address.
|
2019-10-23 08:55:37 +00:00
|
|
|
public let address: String
|
2019-05-19 10:16:09 +00:00
|
|
|
|
|
|
|
/// The address mask.
|
2019-10-23 08:55:37 +00:00
|
|
|
public let addressMask: String
|
2019-05-19 10:16:09 +00:00
|
|
|
|
|
|
|
/// The address of the default gateway.
|
2019-10-23 08:55:37 +00:00
|
|
|
public let defaultGateway: String
|
2019-05-19 10:16:09 +00:00
|
|
|
|
|
|
|
/// The additional routes.
|
2019-10-23 08:55:37 +00:00
|
|
|
public let routes: [Route]
|
2019-05-19 10:16:09 +00:00
|
|
|
|
2021-10-25 14:27:27 +00:00
|
|
|
public init(address: String, addressMask: String, defaultGateway: String, routes: [Route]) {
|
|
|
|
self.address = address
|
|
|
|
self.addressMask = addressMask
|
|
|
|
self.defaultGateway = defaultGateway
|
|
|
|
self.routes = routes
|
|
|
|
}
|
|
|
|
|
2019-05-19 10:16:09 +00:00
|
|
|
// MARK: CustomStringConvertible
|
|
|
|
|
|
|
|
public var description: String {
|
|
|
|
return "addr \(address.maskedDescription) netmask \(addressMask) gw \(defaultGateway.maskedDescription) routes \(routes.map { $0.maskedDescription })"
|
|
|
|
}
|
|
|
|
}
|