From ac0a0ff0896e1a0b0818ffb4dbc5c4fffcdb7348 Mon Sep 17 00:00:00 2001 From: Nova Date: Wed, 2 Apr 2025 01:43:21 +0330 Subject: [PATCH] fix conn copy --- route/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route/conn.go b/route/conn.go index c2a2eab9..582562eb 100644 --- a/route/conn.go +++ b/route/conn.go @@ -262,7 +262,7 @@ func (m *ConnectionManager) connectionCopy(ctx context.Context, source net.Conn, return } } - _, err := bufio.CopyWithCounters(destination, sourceReader, source, readCounters, writeCounters) + _, err := bufio.CopyWithCounters(destinationWriter, sourceReader, source, readCounters, writeCounters) if err != nil { common.Close(source, destination) } else if duplexDst, isDuplex := destination.(N.WriteCloser); isDuplex {