mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Merge pull request #13206 from an0n666/revert-seed-mode-patch
Read piece for torrents added with skip hash only for older libtorrent
This commit is contained in:
commit
3a61042e40
@ -4226,9 +4226,11 @@ void Session::handleAlert(const lt::alert *a)
|
|||||||
case lt::file_error_alert::alert_type:
|
case lt::file_error_alert::alert_type:
|
||||||
handleFileErrorAlert(static_cast<const lt::file_error_alert*>(a));
|
handleFileErrorAlert(static_cast<const lt::file_error_alert*>(a));
|
||||||
break;
|
break;
|
||||||
|
#if (LIBTORRENT_VERSION_NUM < 10208)
|
||||||
case lt::read_piece_alert::alert_type:
|
case lt::read_piece_alert::alert_type:
|
||||||
handleReadPieceAlert(static_cast<const lt::read_piece_alert*>(a));
|
handleReadPieceAlert(static_cast<const lt::read_piece_alert*>(a));
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
case lt::add_torrent_alert::alert_type:
|
case lt::add_torrent_alert::alert_type:
|
||||||
handleAddTorrentAlert(static_cast<const lt::add_torrent_alert*>(a));
|
handleAddTorrentAlert(static_cast<const lt::add_torrent_alert*>(a));
|
||||||
break;
|
break;
|
||||||
@ -4359,9 +4361,11 @@ void Session::createTorrentHandle(const lt::torrent_handle &nativeHandle)
|
|||||||
if (torrent->hasError())
|
if (torrent->hasError())
|
||||||
LogMsg(tr("Torrent errored. Torrent: \"%1\". Error: %2.").arg(torrent->name(), torrent->error()), Log::WARNING);
|
LogMsg(tr("Torrent errored. Torrent: \"%1\". Error: %2.").arg(torrent->name(), torrent->error()), Log::WARNING);
|
||||||
|
|
||||||
// Check if file(s) exist when using seed mode
|
#if (LIBTORRENT_VERSION_NUM < 10208)
|
||||||
|
// Check if file(s) exist when using skip hash check
|
||||||
if (params.skipChecking && torrent->hasMetadata())
|
if (params.skipChecking && torrent->hasMetadata())
|
||||||
nativeHandle.read_piece(lt::piece_index_t(0));
|
nativeHandle.read_piece(lt::piece_index_t(0));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void Session::handleAddTorrentAlert(const lt::add_torrent_alert *p)
|
void Session::handleAddTorrentAlert(const lt::add_torrent_alert *p)
|
||||||
@ -4466,6 +4470,7 @@ void Session::handleFileErrorAlert(const lt::file_error_alert *p)
|
|||||||
m_recentErroredTorrentsTimer->start();
|
m_recentErroredTorrentsTimer->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LIBTORRENT_VERSION_NUM < 10208)
|
||||||
void Session::handleReadPieceAlert(const lt::read_piece_alert *p) const
|
void Session::handleReadPieceAlert(const lt::read_piece_alert *p) const
|
||||||
{
|
{
|
||||||
if (p->error) {
|
if (p->error) {
|
||||||
@ -4473,6 +4478,7 @@ void Session::handleReadPieceAlert(const lt::read_piece_alert *p) const
|
|||||||
p->handle.force_recheck();
|
p->handle.force_recheck();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void Session::handlePortmapWarningAlert(const lt::portmap_error_alert *p)
|
void Session::handlePortmapWarningAlert(const lt::portmap_error_alert *p)
|
||||||
{
|
{
|
||||||
|
@ -590,7 +590,9 @@ namespace BitTorrent
|
|||||||
void handleStateUpdateAlert(const lt::state_update_alert *p);
|
void handleStateUpdateAlert(const lt::state_update_alert *p);
|
||||||
void handleMetadataReceivedAlert(const lt::metadata_received_alert *p);
|
void handleMetadataReceivedAlert(const lt::metadata_received_alert *p);
|
||||||
void handleFileErrorAlert(const lt::file_error_alert *p);
|
void handleFileErrorAlert(const lt::file_error_alert *p);
|
||||||
|
#if (LIBTORRENT_VERSION_NUM < 10208)
|
||||||
void handleReadPieceAlert(const lt::read_piece_alert *p) const;
|
void handleReadPieceAlert(const lt::read_piece_alert *p) const;
|
||||||
|
#endif
|
||||||
void handleTorrentRemovedAlert(const lt::torrent_removed_alert *p);
|
void handleTorrentRemovedAlert(const lt::torrent_removed_alert *p);
|
||||||
void handleTorrentDeletedAlert(const lt::torrent_deleted_alert *p);
|
void handleTorrentDeletedAlert(const lt::torrent_deleted_alert *p);
|
||||||
void handleTorrentDeleteFailedAlert(const lt::torrent_delete_failed_alert *p);
|
void handleTorrentDeleteFailedAlert(const lt::torrent_delete_failed_alert *p);
|
||||||
|
Loading…
Reference in New Issue
Block a user