Fix dumb regression on endpoint address
Was only parsing IPv4/6 addresses, not generic hostnames.
This commit is contained in:
parent
7659057888
commit
7b6aca479b
|
@ -30,7 +30,7 @@ import __TunnelKitUtils
|
|||
public struct Endpoint: RawRepresentable, Codable, Equatable, CustomStringConvertible {
|
||||
|
||||
// XXX: simplistic match
|
||||
private static let rx = NSRegularExpression("^([0-9A-Fa-f\\.:]+):(UDP[46]?|TCP[46]?):(\\d+)$")
|
||||
private static let rx = NSRegularExpression("^([^\\s]+):(UDP[46]?|TCP[46]?):(\\d+)$")
|
||||
|
||||
public let address: String
|
||||
|
||||
|
|
Loading…
Reference in New Issue