aboutsummaryrefslogtreecommitdiffstats
path: root/tun_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tun_darwin.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/tun_darwin.go b/tun_darwin.go
index 772f311..d43be94 100644
--- a/tun_darwin.go
+++ b/tun_darwin.go
@@ -298,8 +298,7 @@ func (tun *NativeTun) Close() error {
err1 := tun.rwcancel.Cancel()
err2 := tun.fd.Close()
if tun.routeSocket != -1 {
- // Surprisingly, on Darwin, simply closing a route socket is enough to unblock it.
- // We don't even need to call shutdown, or use a rwcancel.
+ unix.Shutdown(tun.routeSocket, unix.SHUT_RDWR)
err3 = unix.Close(tun.routeSocket)
tun.routeSocket = -1
} else if tun.events != nil {