Update proxy.go

This commit is contained in:
berlin2123 2022-06-09 20:19:02 +08:00 committed by GitHub
parent 3318f68b5c
commit 2048d12db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -302,7 +302,7 @@ func HandleUserTCPConnection(pxy Proxy, userConn net.Conn, serverCfg config.Serv
connection_duration := endtime - startime
//xl.Debug("join connections closed, it remains [%d]ms, workConn(l[%s] r[%s]) userConn(l[%s] r[%s])", connection_duration,
// workConn.LocalAddr().String(), workConn.RemoteAddr().String(), userConn.LocalAddr().String(), userConn.RemoteAddr().String() )
xl.Info("connections closed, it remains [%d]ms, [%s]", connection_duration, userConn.RemoteAddr().String() )
xl.Info("connections closed, it remains [%d]ms, r[%s]", connection_duration, userConn.RemoteAddr().String() )
}
type Manager struct {