36 lines
768 B
Swift
36 lines
768 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
import Foundation
|
|
import Network
|
|
|
|
struct DNSServer {
|
|
let address: IPAddress
|
|
|
|
init(address: IPAddress) {
|
|
self.address = address
|
|
}
|
|
}
|
|
|
|
extension DNSServer: Equatable {
|
|
static func == (lhs: DNSServer, rhs: DNSServer) -> Bool {
|
|
return lhs.address.rawValue == rhs.address.rawValue
|
|
}
|
|
}
|
|
|
|
extension DNSServer {
|
|
var stringRepresentation: String {
|
|
return "\(address)"
|
|
}
|
|
|
|
init?(from addressString: String) {
|
|
if let addr = IPv4Address(addressString) {
|
|
address = addr
|
|
} else if let addr = IPv6Address(addressString) {
|
|
address = addr
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
}
|