mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-05 23:07:44 +00:00
wgengine/monitor: make Close not block forever on Linux
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
7f5e3febe5
commit
997678f540
@ -6,6 +6,7 @@
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/mdlayher/netlink"
|
||||
"golang.org/x/sys/unix"
|
||||
@ -45,6 +46,7 @@ func newOSMon() (osMon, error) {
|
||||
}
|
||||
|
||||
func (c *nlConn) Close() error {
|
||||
c.conn.SetDeadline(time.Unix(0, 0)) // abort any Receive in flight
|
||||
return c.conn.Close()
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user