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:
parent
229927bbe9
commit
b3c5e6cfa2
@ -39,7 +39,8 @@
|
|||||||
#include "downloadThread.h"
|
#include "downloadThread.h"
|
||||||
#include "deleteThread.h"
|
#include "deleteThread.h"
|
||||||
|
|
||||||
#define ETAS_MAX_VALUES 8
|
#define ETAS_MAX_VALUES 3
|
||||||
|
#define ETA_REFRESH_INTERVAL 10000
|
||||||
#define MAX_TRACKER_ERRORS 2
|
#define MAX_TRACKER_ERRORS 2
|
||||||
|
|
||||||
// Main constructor
|
// Main constructor
|
||||||
@ -61,7 +62,7 @@ bittorrent::bittorrent() : timerScan(0), DHTEnabled(false){
|
|||||||
timerAlerts->start(3000);
|
timerAlerts->start(3000);
|
||||||
ETARefresher = new QTimer();
|
ETARefresher = new QTimer();
|
||||||
connect(ETARefresher, SIGNAL(timeout()), this, SLOT(updateETAs()));
|
connect(ETARefresher, SIGNAL(timeout()), this, SLOT(updateETAs()));
|
||||||
ETARefresher->start(6000);
|
ETARefresher->start(ETA_REFRESH_INTERVAL);
|
||||||
// To download from urls
|
// To download from urls
|
||||||
downloader = new downloadThread(this);
|
downloader = new downloadThread(this);
|
||||||
connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processDownloadedFile(QString, QString)));
|
connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processDownloadedFile(QString, QString)));
|
||||||
|
Loading…
Reference in New Issue
Block a user