From ad65ca2983dd89e5ec0ce27e2bc9641e7854a41e Mon Sep 17 00:00:00 2001 From: brindosch Date: Tue, 7 Jun 2016 13:17:40 +0200 Subject: [PATCH] atmoorb qt5 fix (#683) Former-commit-id: 64ce9cd676059d5225493a97c89b83f589f68417 --- libsrc/leddevice/LedDeviceAtmoOrb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/leddevice/LedDeviceAtmoOrb.cpp b/libsrc/leddevice/LedDeviceAtmoOrb.cpp index 28532105..5211887d 100644 --- a/libsrc/leddevice/LedDeviceAtmoOrb.cpp +++ b/libsrc/leddevice/LedDeviceAtmoOrb.cpp @@ -30,7 +30,7 @@ LedDeviceAtmoOrb::LedDeviceAtmoOrb( groupAddress = QHostAddress(multicastGroup); udpSocket = new QUdpSocket(this); - udpSocket->bind(multiCastGroupPort, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint); + udpSocket->bind(QHostAddress::AnyIPv4, multiCastGroupPort, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint); joinedMulticastgroup = udpSocket->joinMulticastGroup(groupAddress); }