mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-01-29 20:12:08 +00:00
NetworkExtension: close context before turning off go
The go turnOff code waits for all readers to have completed. In order to make readers complete, we must send the signal to unblock the request. Thus, we must reorder these. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
3ed88cd858
commit
d2f3a29f45
@ -125,10 +125,10 @@ class PacketTunnelProvider: NEPacketTunnelProvider {
|
||||
/// Begin the process of stopping the tunnel.
|
||||
override func stopTunnel(with reason: NEProviderStopReason, completionHandler: @escaping () -> Void) {
|
||||
os_log("Stopping tunnel", log: OSLog.default, type: .info)
|
||||
wgContext?.closeTunnel()
|
||||
if let handle = wgHandle {
|
||||
wgTurnOff(handle)
|
||||
}
|
||||
wgContext?.closeTunnel()
|
||||
completionHandler()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user