|
|
|
@ -1876,6 +1876,14 @@ void TorrentImpl::handleFileCompletedAlert(const lt::file_completed_alert *p)
@@ -1876,6 +1876,14 @@ void TorrentImpl::handleFileCompletedAlert(const lt::file_completed_alert *p)
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#if (LIBTORRENT_VERSION_NUM >= 20003) |
|
|
|
|
void TorrentImpl::handleFilePrioAlert(const lt::file_prio_alert *p) |
|
|
|
|
{ |
|
|
|
|
if (m_nativeHandle.need_save_resume_data()) |
|
|
|
|
m_session->handleTorrentNeedSaveResumeData(this); |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
void TorrentImpl::handleMetadataReceivedAlert(const lt::metadata_received_alert *p) |
|
|
|
|
{ |
|
|
|
|
Q_UNUSED(p); |
|
|
|
@ -1913,6 +1921,11 @@ void TorrentImpl::handleAlert(const lt::alert *a)
@@ -1913,6 +1921,11 @@ void TorrentImpl::handleAlert(const lt::alert *a)
|
|
|
|
|
{ |
|
|
|
|
switch (a->type()) |
|
|
|
|
{ |
|
|
|
|
#if (LIBTORRENT_VERSION_NUM >= 20003) |
|
|
|
|
case lt::file_prio_alert::alert_type: |
|
|
|
|
handleFilePrioAlert(static_cast<const lt::file_prio_alert*>(a)); |
|
|
|
|
break; |
|
|
|
|
#endif |
|
|
|
|
case lt::file_renamed_alert::alert_type: |
|
|
|
|
handleFileRenamedAlert(static_cast<const lt::file_renamed_alert*>(a)); |
|
|
|
|
break; |
|
|
|
|