diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-11-01 22:52:11 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-11-01 22:52:11 +0100 |
commit | e44a0cb9445f79e221efcdb4fbef19353a8801f1 (patch) | |
tree | 17b9422b1b6fcd0c042ce71f99075f9843d23d7c /api/logic/net/Download.h | |
parent | e6d734d9ac099d918a9ca70e1579de51f5eca20e (diff) | |
download | MultiMC-e44a0cb9445f79e221efcdb4fbef19353a8801f1.tar MultiMC-e44a0cb9445f79e221efcdb4fbef19353a8801f1.tar.gz MultiMC-e44a0cb9445f79e221efcdb4fbef19353a8801f1.tar.lz MultiMC-e44a0cb9445f79e221efcdb4fbef19353a8801f1.tar.xz MultiMC-e44a0cb9445f79e221efcdb4fbef19353a8801f1.zip |
NOISSUE catch and log SSL errors for Download(s)
Diffstat (limited to 'api/logic/net/Download.h')
-rw-r--r-- | api/logic/net/Download.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/logic/net/Download.h b/api/logic/net/Download.h index 3347dc96..6554a8dc 100644 --- a/api/logic/net/Download.h +++ b/api/logic/net/Download.h @@ -58,6 +58,7 @@ private: /* methods */ protected slots: void downloadProgress(qint64 bytesReceived, qint64 bytesTotal) override; void downloadError(QNetworkReply::NetworkError error) override; + void sslErrors(const QList<QSslError> & errors); void downloadFinished() override; void downloadReadyRead() override; |