v2ray hace 10 años
padre
commit
1c5c1a7aef
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      proxy/socks/socks.go

+ 2 - 0
proxy/socks/socks.go

@@ -181,6 +181,8 @@ func (this *SocksServer) handleSocks5(reader *v2net.TimeOutReader, writer io.Wri
 		return err
 	}
 
+	log.Info("TCP Connect request to %s", dest.String())
+
 	packet := v2net.NewPacket(dest, data, true)
 	this.transport(reader, writer, packet)
 	return nil