1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-09 14:27:56 +00:00

- Store less ETA values for each torrent in order to save memory

This commit is contained in:
Christophe Dumez 2007-08-29 16:11:24 +00:00
parent 229927bbe9
commit b3c5e6cfa2

View File

@ -39,7 +39,8 @@
#include "downloadThread.h"
#include "deleteThread.h"
#define ETAS_MAX_VALUES 8
#define ETAS_MAX_VALUES 3
#define ETA_REFRESH_INTERVAL 10000
#define MAX_TRACKER_ERRORS 2
// Main constructor
@ -61,7 +62,7 @@ bittorrent::bittorrent() : timerScan(0), DHTEnabled(false){
timerAlerts->start(3000);
ETARefresher = new QTimer();
connect(ETARefresher, SIGNAL(timeout()), this, SLOT(updateETAs()));
ETARefresher->start(6000);
ETARefresher->start(ETA_REFRESH_INTERVAL);
// To download from urls
downloader = new downloadThread(this);
connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processDownloadedFile(QString, QString)));