Fix buffer usage

This commit is contained in:
世界 2022-05-07 17:08:57 +08:00
parent 6089c358c2
commit f1b87be6e4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
21 changed files with 121 additions and 24 deletions

View file

@ -10,6 +10,7 @@ import (
"net/netip"
"os"
"os/signal"
"runtime"
"runtime/debug"
"strings"
"syscall"
@ -350,7 +351,7 @@ func (c *client) NewConnection(ctx context.Context, conn net.Conn, metadata M.Me
if err != nil {
return E.Cause(err, "client handshake")
}
runtime.KeepAlive(_payload)
return rw.CopyConn(ctx, serverConn, conn)
}