Changeset 9739 in ntrip for trunk/BNC/src/upload
- Timestamp:
- May 31, 2022, 2:42:18 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncuploadcaster.cpp
r9738 r9739 219 219 220 220 _outSocket = new QSslSocket(); 221 _outSocket->setSslConfiguration(BNC_CORE->sslConfiguration());222 221 _outSocket->setProxy(QNetworkProxy::NoProxy); 223 222 _outSocket->setSslConfiguration(BNC_SSL_CONFIG); 224 223 connect(_outSocket, SIGNAL(disconnected()), this, SLOT(slotSslSocketConnectionClosed())); 225 224 connect(_outSocket, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(slotSslErrors(QList<QSslError>))); … … 337 336 338 337 void bncUploadCaster::slotSslSocketConnectionClosed() { 339 //disconnect(_outSocket, SIGNAL(disconnected()), this, SLOT(slotSslSocketConnectionClosed()));340 //disconnect(_outSocket, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(slotSslErrors(QList<QSslError>)));338 disconnect(_outSocket, SIGNAL(disconnected()), this, SLOT(slotSslSocketConnectionClosed())); 339 disconnect(_outSocket, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(slotSslErrors(QList<QSslError>))); 341 340 emit(newMessage("slotSslSocketConnectionClosed", true)); 342 341 if (_outSocket) {
Note:
See TracChangeset
for help on using the changeset viewer.