On Tuesday, 30 May 2017 03:59:46 PDT wim delvaux wrote: > Well I created multiple QObjects, in each created a QUdpSocket and > connected it to the same adress/port. > > I was hoping that all of the connected objects would receive all incoming > data (multicast copies I thought) but it seems only one object gets the > data.
When you called bind(), did all of them return true? Did you remember to allow reusing the port number? Pass the QUdpSocket::ShareAddress flag to bind(). -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center _______________________________________________ Development mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/development
