From b7466f0d7d9abc2582402f07cc2e030dd6d05a7e Mon Sep 17 00:00:00 2001 From: JackDoan Date: Wed, 15 Apr 2026 14:58:53 -0500 Subject: [PATCH] goddamnit --- overlay/tun_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/tun_linux.go b/overlay/tun_linux.go index d0e95695..f0c95ead 100644 --- a/overlay/tun_linux.go +++ b/overlay/tun_linux.go @@ -240,7 +240,7 @@ func (t *tun) SupportsMultiqueue() bool { } func (t *tun) NewMultiQueueReader() (io.ReadWriteCloser, error) { - fd, err := unix.Open("/dev/net/tun", os.O_RDWR, 0) + fd, err := unix.Open("/dev/net/tun", os.O_RDWR|unix.O_NONBLOCK, 0) if err != nil { return nil, err }