diff --git a/src/VideoStreaming/VideoReceiver.cc b/src/VideoStreaming/VideoReceiver.cc index 23d4dc21c7c4069693944a3472e957120dbcbda8..ad24e25b3886c518e659f90bf31647897e3ac5a0 100644 --- a/src/VideoStreaming/VideoReceiver.cc +++ b/src/VideoStreaming/VideoReceiver.cc @@ -181,6 +181,7 @@ VideoReceiver::_timeout() // found to be working, only then we actually start the stream. QUrl url(_uri); _socket = new QTcpSocket; + _socket->setProxy(QNetworkProxy::NoProxy); connect(_socket, static_cast(&QTcpSocket::error), this, &VideoReceiver::_socketError); connect(_socket, &QTcpSocket::connected, this, &VideoReceiver::_connected); //qCDebug(VideoReceiverLog) << "Trying to connect to:" << url.host() << url.port();