Ignore:
Timestamp:
May 31, 2022, 2:42:18 PM (23 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncuploadcaster.cpp

    r9738 r9739  
    219219
    220220  _outSocket = new QSslSocket();
    221   _outSocket->setSslConfiguration(BNC_CORE->sslConfiguration());
    222221  _outSocket->setProxy(QNetworkProxy::NoProxy);
    223 
     222  _outSocket->setSslConfiguration(BNC_SSL_CONFIG);
    224223  connect(_outSocket, SIGNAL(disconnected()), this, SLOT(slotSslSocketConnectionClosed()));
    225224  connect(_outSocket, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(slotSslErrors(QList<QSslError>)));
     
    337336
    338337void 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>)));
    341340  emit(newMessage("slotSslSocketConnectionClosed", true));
    342341  if (_outSocket) {
Note: See TracChangeset for help on using the changeset viewer.