diff --git a/src/comm/UDPLink.cc b/src/comm/UDPLink.cc index 4828c6f9b774a51f73e5c866cfe9b182de1a2f0c..a286a078a05022a00af20213ff8df687cb0370f9 100644 --- a/src/comm/UDPLink.cc +++ b/src/comm/UDPLink.cc @@ -245,6 +245,7 @@ bool UDPLink::_hardwareConnect() _socket->setProxy(QNetworkProxy::NoProxy); _connectState = _socket->bind(host, _udpConfig->localPort(), QAbstractSocket::ReuseAddressHint | QUdpSocket::ShareAddress); if (_connectState) { + _socket->joinMulticastGroup(QHostAddress("224.0.0.1")); //-- Make sure we have a large enough IO buffers #ifdef __mobile__ _socket->setSocketOption(QAbstractSocket::SendBufferSizeSocketOption, 64 * 1024);