wireguard-apple/WireGuard/Shared/Model/InterfaceConfiguration.swift

22 lines
538 B
Swift
Raw Normal View History

2018-12-21 04:52:45 +00:00
// SPDX-License-Identifier: MIT
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
import Foundation
struct InterfaceConfiguration {
var name: String?
2018-12-21 04:52:45 +00:00
var privateKey: Data
var addresses = [IPAddressRange]()
var listenPort: UInt16?
var mtu: UInt16?
var dns = [DNSServer]()
2018-12-21 22:34:56 +00:00
init(name: String?, privateKey: Data) {
2018-12-21 04:52:45 +00:00
self.name = name
self.privateKey = privateKey
if privateKey.count != TunnelConfiguration.keyLength {
fatalError("Invalid private key")
}
}
}