mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 02:06:07 +03:00
- Fixed not destructing libtorrent session bug
This commit is contained in:
parent
8858518a14
commit
64bfdf930c
3 changed files with 34 additions and 8 deletions
|
@ -43,7 +43,7 @@
|
|||
#define MAX_TRACKER_ERRORS 2
|
||||
|
||||
// Main constructor
|
||||
bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false), addInPause(false), maxConnecsPerTorrent(500), maxUploadsPerTorrent(4), max_ratio(-1) {
|
||||
bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false), addInPause(false), maxConnecsPerTorrent(500), maxUploadsPerTorrent(4), max_ratio(-1), UPnPEnabled(false), NATPMPEnabled(false), LSDEnabled(false) {
|
||||
// To avoid some exceptions
|
||||
fs::path::default_name_check(fs::no_check);
|
||||
// Creating bittorrent session
|
||||
|
@ -631,25 +631,49 @@ bool bittorrent::isDHTEnabled() const{
|
|||
|
||||
void bittorrent::enableUPnP(bool b) {
|
||||
if(b) {
|
||||
s->start_upnp();
|
||||
if(!UPnPEnabled) {
|
||||
qDebug("Enabling UPnP");
|
||||
s->start_upnp();
|
||||
UPnPEnabled = true;
|
||||
}
|
||||
} else {
|
||||
s->stop_upnp();
|
||||
if(UPnPEnabled) {
|
||||
qDebug("Disabling UPnP");
|
||||
s->stop_upnp();
|
||||
UPnPEnabled = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void bittorrent::enableNATPMP(bool b) {
|
||||
if(b) {
|
||||
s->start_natpmp();
|
||||
if(!NATPMPEnabled) {
|
||||
qDebug("Enabling NAT-PMP");
|
||||
s->start_natpmp();
|
||||
NATPMPEnabled = true;
|
||||
}
|
||||
} else {
|
||||
s->stop_natpmp();
|
||||
if(NATPMPEnabled) {
|
||||
qDebug("Disabling NAT-PMP");
|
||||
s->stop_natpmp();
|
||||
NATPMPEnabled = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void bittorrent::enableLSD(bool b) {
|
||||
if(b) {
|
||||
s->start_lsd();
|
||||
if(!LSDEnabled) {
|
||||
qDebug("Enabling LSD");
|
||||
s->start_lsd();
|
||||
LSDEnabled = true;
|
||||
}
|
||||
} else {
|
||||
s->stop_lsd();
|
||||
if(LSDEnabled) {
|
||||
qDebug("Disabling LSD");
|
||||
s->stop_lsd();
|
||||
LSDEnabled = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -62,6 +62,9 @@ class bittorrent : public QObject{
|
|||
int maxConnecsPerTorrent;
|
||||
int maxUploadsPerTorrent;
|
||||
float max_ratio;
|
||||
bool UPnPEnabled;
|
||||
bool NATPMPEnabled;
|
||||
bool LSDEnabled;
|
||||
|
||||
protected:
|
||||
QString getSavePath(QString hash);
|
||||
|
|
|
@ -207,7 +207,6 @@ void DownloadingTorrents::setInfoBar(QString info, QColor color) {
|
|||
infoBar->clear();
|
||||
nbLines = 1;
|
||||
}
|
||||
qDebug("Color is %s", color.name().toUtf8().data());
|
||||
infoBar->append(QString::fromUtf8("<font color='grey'>")+ QTime::currentTime().toString(QString::fromUtf8("hh:mm:ss")) + QString::fromUtf8("</font> - <font color='") + color.name() +QString::fromUtf8("'><i>") + info + QString::fromUtf8("</i></font>"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue