Changeset 9729 in ntrip for trunk/BNC/src/upload/bncuploadcaster.cpp
- Timestamp:
- May 20, 2022, 1:05:12 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncuploadcaster.cpp
r9728 r9729 230 230 _outSocket->setProxy(QNetworkProxy::NoProxy); 231 231 _outSocket->setSslConfiguration(sslConfig); 232 232 233 233 connect(_outSocket, SIGNAL(disconnected()), this, SLOT(slotSslSocketConnectionClosed())); 234 234 connect(_outSocket, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(slotSslErrors(QList<QSslError>))); … … 263 263 "Proxy: Connection broken for " + _mountpoint.toLatin1() 264 264 + ": " + ans.left(ans.length() - 2), true)); 265 //delete _outSocket; 266 //_outSocket=0; 265 _outSocket->close(); 267 266 return; 268 267 } else { … … 279 278 + QString("%1) ").arg(_casterOutPort).toLatin1() 280 279 + _outSocket->errorString().toLatin1(), true)); 281 //delete _outSocket;282 //_outSocket=0;283 280 return; 284 281 } else { … … 312 309 313 310 if (ans.indexOf("200") == -1) { 314 //delete _outSocket; 315 //_outSocket=0; 311 _outSocket->close(); 316 312 emit(newMessage( 317 313 "Broadcaster: Connection broken for " + _mountpoint.toLatin1() + ": "
Note:
See TracChangeset
for help on using the changeset viewer.