Just in case darwin changes, we also shutdown

This commit is contained in:
Jason A. Donenfeld 2018-05-22 01:27:29 +02:00
parent b8c9e13c6e
commit 8462c08cf2

View file

@ -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 {