mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-06 21:21:24 -07:00
- Added connection limits for each torrent
This commit is contained in:
parent
6244d1226f
commit
821854703b
1 changed files with 2 additions and 0 deletions
|
@ -1261,6 +1261,8 @@ void GUI::addTorrents(const QStringList& pathsList, bool fromScanDir, const QStr
|
|||
int row = DLListModel->rowCount();
|
||||
// Adding files to bittorrent session
|
||||
h = s->add_torrent(t, fs::path(saveDir.path().toStdString()), resume_data);
|
||||
h.set_max_connections(60);
|
||||
h.set_max_uploads(-1);
|
||||
//qDebug("Added to session");
|
||||
torrent_status torrentStatus = h.status();
|
||||
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue