Fix missing configuration title in Demo
This commit is contained in:
parent
6df141d152
commit
ca60e3db39
|
@ -98,7 +98,7 @@ class ViewController: UIViewController, URLSessionDataDelegate {
|
||||||
appGroup: appGroup,
|
appGroup: appGroup,
|
||||||
credentials: credentials
|
credentials: credentials
|
||||||
)
|
)
|
||||||
let neCfg = NetworkExtensionVPNConfiguration(protocolConfiguration: proto, onDemandRules: [])
|
let neCfg = NetworkExtensionVPNConfiguration(title: "BasicTunnel", protocolConfiguration: proto, onDemandRules: [])
|
||||||
vpn.reconnect(configuration: neCfg) { (error) in
|
vpn.reconnect(configuration: neCfg) { (error) in
|
||||||
if let error = error {
|
if let error = error {
|
||||||
print("configure error: \(error)")
|
print("configure error: \(error)")
|
||||||
|
|
|
@ -90,7 +90,7 @@ class ViewController: NSViewController {
|
||||||
appGroup: appGroup,
|
appGroup: appGroup,
|
||||||
credentials: credentials
|
credentials: credentials
|
||||||
)
|
)
|
||||||
let neCfg = NetworkExtensionVPNConfiguration(protocolConfiguration: proto, onDemandRules: [])
|
let neCfg = NetworkExtensionVPNConfiguration(title: "BasicTunnel", protocolConfiguration: proto, onDemandRules: [])
|
||||||
vpn.reconnect(configuration: neCfg) { (error) in
|
vpn.reconnect(configuration: neCfg) { (error) in
|
||||||
if let error = error {
|
if let error = error {
|
||||||
print("configure error: \(error)")
|
print("configure error: \(error)")
|
||||||
|
|
Loading…
Reference in New Issue