Changeset 3332 in ntrip
- Timestamp:
- Jul 19, 2011, 4:03:35 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncnetqueryv2.cpp
r2012 r3332 135 135 connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished())); 136 136 connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit())); 137 connect(_reply, SIGNAL(sslErrors(QList<QSslError>)), 138 this, SLOT(slotSslErrors(QList<QSslError>))); 137 139 if (!full) { 138 140 connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit())); … … 180 182 } 181 183 184 // TSL/SSL 185 //////////////////////////////////////////////////////////////////////////// 186 void bncNetQueryV2::slotSslErrors(QList<QSslError>) { 187 188 std::cout << "slotSslErrors" << std::endl; 189 _reply->ignoreSslErrors(); 190 } -
trunk/BNC/bncnetqueryv2.h
r1716 r3332 19 19 void slotFinished(); 20 20 void slotProxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*); 21 void slotSslErrors(QList<QSslError>); 21 22 22 23 private:
Note:
See TracChangeset
for help on using the changeset viewer.