@@ -32,9 +32,9 NetworkController::NetworkController(QObject *parent) | |||
|
32 | 32 | void NetworkController::onProcessRequested(const QNetworkRequest &request, QUuid identifier, |
|
33 | 33 | std::function<void(QNetworkReply *, QUuid)> callback) |
|
34 | 34 | { |
|
35 | auto reply = impl->m_AccessManager->get(request); | |
|
36 | 35 | qCDebug(LOG_NetworkController()) << tr("NetworkController registered") |
|
37 |
<< QThread::currentThread() |
|
|
36 | << QThread::currentThread()->objectName(); | |
|
37 | auto reply = impl->m_AccessManager->get(request); | |
|
38 | 38 | |
|
39 | 39 | // Store the couple reply id |
|
40 | 40 | impl->lockWrite(); |
@@ -81,6 +81,8 void NetworkController::onProcessRequested(const QNetworkRequest &request, QUuid | |||
|
81 | 81 | |
|
82 | 82 | connect(reply, &QNetworkReply::finished, this, onReplyFinished); |
|
83 | 83 | connect(reply, &QNetworkReply::downloadProgress, this, onReplyProgress); |
|
84 | qCDebug(LOG_NetworkController()) << tr("NetworkController registered END") | |
|
85 | << QThread::currentThread()->objectName() << reply; | |
|
84 | 86 | } |
|
85 | 87 | |
|
86 | 88 | void NetworkController::initialize() |
@@ -88,6 +90,17 void NetworkController::initialize() | |||
|
88 | 90 | qCDebug(LOG_NetworkController()) << tr("NetworkController init") << QThread::currentThread(); |
|
89 | 91 | impl->m_WorkingMutex.lock(); |
|
90 | 92 | impl->m_AccessManager = std::make_unique<QNetworkAccessManager>(); |
|
93 | ||
|
94 | ||
|
95 | auto onReplyErrors = [this](QNetworkReply *reply, const QList<QSslError> &errors) { | |
|
96 | ||
|
97 | qCCritical(LOG_NetworkController()) << tr("NetworkAcessManager errors: ") << errors; | |
|
98 | ||
|
99 | }; | |
|
100 | ||
|
101 | ||
|
102 | connect(impl->m_AccessManager.get(), &QNetworkAccessManager::sslErrors, this, onReplyErrors); | |
|
103 | ||
|
91 | 104 | qCDebug(LOG_NetworkController()) << tr("NetworkController init END"); |
|
92 | 105 | } |
|
93 | 106 |
General Comments 0
You need to be logged in to leave comments.
Login now