From 8462c08cf2c968386374c81d0e9dafb904483f8c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 22 May 2018 01:27:29 +0200 Subject: Just in case darwin changes, we also shutdown --- tun_darwin.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tun_darwin.go') 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 { -- cgit v1.2.3-59-g8ed1b