From db5ec3cdfc5b1b0e4c2d7551a82d480a57ae0b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 20 Mar 2025 20:22:47 +0800 Subject: [PATCH] Fix connectionCopyEarly --- route/conn.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/route/conn.go b/route/conn.go index 2824ffb1..17218387 100644 --- a/route/conn.go +++ b/route/conn.go @@ -2,6 +2,7 @@ package route import ( "context" + "errors" "io" "net" "net/netip" @@ -290,7 +291,7 @@ func (m *ConnectionManager) connectionCopyEarly(source net.Conn, destination io. return err } _, err = payload.ReadOnceFrom(source) - if err != nil && !E.IsTimeout(err) { + if err != nil && !(E.IsTimeout(err) || errors.Is(err, io.EOF)) { return E.Cause(err, "read payload") } _ = source.SetReadDeadline(time.Time{})