From 35b5747b44ec8355684c208531cad34bbbcd5c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 19 Mar 2025 20:34:23 +0800 Subject: [PATCH] Ignore UDP offload error --- tun_linux.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tun_linux.go b/tun_linux.go index 8c7bac6..72aac6a 100644 --- a/tun_linux.go +++ b/tun_linux.go @@ -202,7 +202,6 @@ func (t *NativeTun) enableGSO() error { err = setUDPOffload(t.tunFd) if err != nil { t.gro.disableUDPGRO() - return E.Cause(err, "enable UDP offload") } return nil }