- Timestamp:
- 01/23/17 18:58:50 (5 years ago)
- Branches:
- master, qt5
- Children:
- f94ab1d
- Parents:
- 056bee2
- git-author:
- gregor herrmann <gregoa@…> (01/23/17 18:56:46)
- git-committer:
- gregor herrmann <gregoa@…> (01/23/17 18:58:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/mainwindow.cpp
r056bee2 r0d41eb2 25 25 #include <QNetworkAccessManager> 26 26 #include <QNetworkReply> 27 #include <QSslConfiguration> 27 28 28 29 #include "sqlengine.h" … … 436 437 { 437 438 QNetworkRequest request; 439 QSslConfiguration qSslConfiguration = request.sslConfiguration(); 440 qSslConfiguration.setProtocol(QSsl::AnyProtocol); 441 qSslConfiguration.setPeerVerifyMode(QSslSocket::QueryPeer); 438 442 request.setUrl(QUrl(url)); 443 request.setSslConfiguration(qSslConfiguration); 439 444 request.setAttribute(QNetworkRequest::User, conferenceId); 440 445
Note: See TracChangeset
for help on using the changeset viewer.