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:
parent
9911f7c90d
commit
40d4ea3dcf
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user