QSocks5SocketEngine: avoid interface as parameter name

`interface` is used by win32 headers. avoiding it fixes unity builds on
windows.

Pick-to: 6.8
Change-Id: I85c05e70f4986f2f384850458f7a460baacf6baf
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
(cherry picked from commit 7d9b930b6fbb56e9c4a848b54af2db6b58926440)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Tim Blechmann 2025-05-03 08:49:49 +02:00 committed by Qt Cherry-pick Bot
parent 9911f7c90d
commit 40d4ea3dcf

View File

@ -59,9 +59,9 @@ public:
#ifndef QT_NO_UDPSOCKET
#ifndef QT_NO_NETWORKINTERFACE
bool joinMulticastGroup(const QHostAddress &groupAddress,
const QNetworkInterface &interface) override;
const QNetworkInterface &iface) override;
bool leaveMulticastGroup(const QHostAddress &groupAddress,
const QNetworkInterface &interface) override;
const QNetworkInterface &iface) override;
QNetworkInterface multicastInterface() const override;
bool setMulticastInterface(const QNetworkInterface &iface) override;
#endif // QT_NO_NETWORKINTERFACE