Commit 9440ee8d authored by Andy Shaw's avatar Andy Shaw
Browse files

Set the protocol type so that PAC scripts handle ws/wss correctly


On macOS it will only allow proxies in a PAC script to use http/https
protocols, so this enables them to work by automatically setting these
as the type instead.

Change-Id: I66589057d40d135229cbae4986ef0819287ea69a
Reviewed-by: default avatarTimur Pocheptsov <timur.pocheptsov@qt.io>
Showing with 2 additions and 0 deletions
...@@ -436,6 +436,7 @@ void QWebSocketPrivate::open(const QNetworkRequest &request, bool mask) ...@@ -436,6 +436,7 @@ void QWebSocketPrivate::open(const QNetworkRequest &request, bool mask)
sslSocket->ignoreSslErrors(m_configuration.m_ignoredSslErrors); sslSocket->ignoreSslErrors(m_configuration.m_ignoredSslErrors);
#ifndef QT_NO_NETWORKPROXY #ifndef QT_NO_NETWORKPROXY
sslSocket->setProxy(m_configuration.m_proxy); sslSocket->setProxy(m_configuration.m_proxy);
m_pSocket->setProtocolTag(QStringLiteral("https"));
#endif #endif
sslSocket->connectToHostEncrypted(url.host(), quint16(url.port(443))); sslSocket->connectToHostEncrypted(url.host(), quint16(url.port(443)));
} else { } else {
...@@ -458,6 +459,7 @@ void QWebSocketPrivate::open(const QNetworkRequest &request, bool mask) ...@@ -458,6 +459,7 @@ void QWebSocketPrivate::open(const QNetworkRequest &request, bool mask)
setSocketState(QAbstractSocket::ConnectingState); setSocketState(QAbstractSocket::ConnectingState);
#ifndef QT_NO_NETWORKPROXY #ifndef QT_NO_NETWORKPROXY
m_pSocket->setProxy(m_configuration.m_proxy); m_pSocket->setProxy(m_configuration.m_proxy);
m_pSocket->setProtocolTag(QStringLiteral("http"));
#endif #endif
m_pSocket->connectToHost(url.host(), quint16(url.port(80))); m_pSocket->connectToHost(url.host(), quint16(url.port(80)));
} else { } else {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment