mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-01-19 06:49:08 +00:00
Revert "Parser: Interface name can be added after parsing"
This reverts commit d3a9e79149
.
This commit is contained in:
parent
e86923528b
commit
d7691158a4
@ -21,13 +21,15 @@ class WgQuickConfigFileParser {
|
||||
|
||||
// Based on the parser written by Eric Kuck <eric@bluelinelabs.com> in commit 5ef1656
|
||||
|
||||
static func parse(_ text: String) throws -> TunnelConfiguration {
|
||||
static func parse(_ text: String, name: String) throws -> TunnelConfiguration {
|
||||
|
||||
assert(!name.isEmpty)
|
||||
|
||||
func collate(interfaceAttributes attributes: [String:String]) -> InterfaceConfiguration? {
|
||||
// required wg fields
|
||||
guard let privateKeyString = attributes["PrivateKey"] else { return nil }
|
||||
guard let privateKey = Data(base64Encoded: privateKeyString), privateKey.count == 32 else { return nil }
|
||||
var interface = InterfaceConfiguration(name: "", privateKey: privateKey)
|
||||
var interface = InterfaceConfiguration(name: name, privateKey: privateKey)
|
||||
// other wg fields
|
||||
if let listenPortString = attributes["ListenPort"] {
|
||||
guard let listenPort = UInt16(listenPortString) else { return nil }
|
||||
|
Loading…
Reference in New Issue
Block a user