Re: [Interest] QUdpSocket multicast on multiple network interfaces

2014-02-20 Thread Thiago Macieira
Em qui 20 fev 2014, às 05:47:13, Bob Hood escreveu: > On 2/19/2014 10:30 PM, Thiago Macieira wrote: > > Let me answer by pasting this: > > > > $ date -u > > Thu Feb 20 05:29:41 UTC 2014 > > Let me retort by pasting this: > > http://www.theonion.com/articles/report-stating-current-year-still-lead

Re: [Interest] QUdpSocket multicast on multiple network interfaces

2014-02-20 Thread Bob Hood
On 2/19/2014 10:30 PM, Thiago Macieira wrote: > Let me answer by pasting this: > > $ date -u > Thu Feb 20 05:29:41 UTC 2014 > Let me retort by pasting this: http://www.theonion.com/articles/report-stating-current-year-still-leading-argument,35288/ ;) _

Re: [Interest] QUdpSocket multicast on multiple network interfaces

2014-02-19 Thread Thiago Macieira
Em qui 20 fev 2014, às 04:54:57, Tom Isaacson escreveu: > But if the Ethernet and Wifi are bridged shouldn't Qt multicast to both? Depends on how that bridge works. If you have a bridge device, bind to it, not to eth0 or wlan0. But given the fact that you said you can bind to the IP assigned to

Re: [Interest] QUdpSocket multicast on multiple network interfaces

2014-02-19 Thread Tom Isaacson
>> We're using Qt 4.8.2 on an embedded Linux device. We've always had >> Ethernet >> (eth0) and we use QUdpSocket to send a multicast message on the network: >> >> m_pUdpSocket = new QUdpSocket(this); >> m_pUdpSocket->writeDatagram(json.toAscii(), m_cMulticastAddr, >> m_cMulticastPort);

Re: [Interest] QUdpSocket multicast on multiple network interfaces

2014-02-19 Thread Thiago Macieira
Em qua 19 fev 2014, às 23:27:38, Tom Isaacson escreveu: > We're using Qt 4.8.2 on an embedded Linux device. We've always had Ethernet > (eth0) and we use QUdpSocket to send a multicast message on the network: > > m_pUdpSocket = new QUdpSocket(this); > m_pUdpSocket->writeDatagram(json.toAsc

[Interest] QUdpSocket multicast on multiple network interfaces

2014-02-19 Thread Tom Isaacson
We're using Qt 4.8.2 on an embedded Linux device. We've always had Ethernet (eth0) and we use QUdpSocket to send a multicast message on the network: m_pUdpSocket = new QUdpSocket(this); m_pUdpSocket->writeDatagram(json.toAscii(), m_cMulticastAddr, m_cMulticastPort); This works fine, but