From 265e051cb26886cc248f511a3481ecd723209d12 Mon Sep 17 00:00:00 2001 From: Salini Venate Date: Mon, 28 Aug 2017 16:15:33 +0530 Subject: [PATCH] Set NoProxy for the TCP Socket used for Videostreaming --- src/VideoStreaming/VideoReceiver.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VideoStreaming/VideoReceiver.cc b/src/VideoStreaming/VideoReceiver.cc index 23d4dc21c..ad24e25b3 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(); -- 2.22.0