1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-21 10:19:54 -04:00

update error message

This commit is contained in:
Darien Raymond
2017-04-06 21:44:20 +02:00
parent 75f5cb9afb
commit 67956b9120
12 changed files with 26 additions and 26 deletions

View File

@@ -54,7 +54,7 @@ func (w *tcpWorker) callback(conn internet.Connection) {
ctx = proxy.ContextWithInboundEntryPoint(ctx, v2net.TCPDestination(w.address, w.port))
ctx = proxy.ContextWithSource(ctx, v2net.DestinationFromAddr(conn.RemoteAddr()))
if err := w.proxy.Process(ctx, v2net.Network_TCP, conn, w.dispatcher); err != nil {
log.Trace(errors.New("connection ends").Base(err).Path("Proxyman", "TCPWorker"))
log.Trace(errors.New("connection ends").Base(err).Path("App", "Proxyman", "Inbound", "TCPWorker"))
}
cancel()
conn.Close()