mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
Use alert's timestamp
This way has better accuracy than running our own timer.
This commit is contained in:
parent
84e683cc99
commit
39830986c2
@ -508,7 +508,6 @@ Session::Session(QObject *parent)
|
||||
new PortForwarderImpl {m_nativeSession};
|
||||
|
||||
initMetrics();
|
||||
m_statsUpdateTimer.start();
|
||||
|
||||
qDebug("* BitTorrent Session constructed");
|
||||
}
|
||||
@ -4207,7 +4206,9 @@ void Session::handleExternalIPAlert(const lt::external_ip_alert *p)
|
||||
|
||||
void Session::handleSessionStatsAlert(const lt::session_stats_alert *p)
|
||||
{
|
||||
const qreal interval = m_statsUpdateTimer.restart() / 1000.;
|
||||
const qreal interval = lt::total_milliseconds(p->timestamp() - m_statsLastTimestamp) / 1000.;
|
||||
m_statsLastTimestamp = p->timestamp();
|
||||
|
||||
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||
const auto &stats = p->values;
|
||||
#else
|
||||
|
@ -34,7 +34,6 @@
|
||||
|
||||
#include <libtorrent/fwd.hpp>
|
||||
|
||||
#include <QElapsedTimer>
|
||||
#include <QFile>
|
||||
#include <QHash>
|
||||
#include <QList>
|
||||
@ -701,7 +700,7 @@ namespace BitTorrent
|
||||
QTimer *m_recentErroredTorrentsTimer;
|
||||
|
||||
SessionMetricIndices m_metricIndices;
|
||||
QElapsedTimer m_statsUpdateTimer;
|
||||
lt::time_point m_statsLastTimestamp = lt::clock_type::now();
|
||||
|
||||
SessionStatus m_status;
|
||||
CacheStatus m_cacheStatus;
|
||||
|
Loading…
Reference in New Issue
Block a user