Hi all,
I have a local network 192.168.1.0
On this network, I have 3 nodes 192.168.1.1, 192.168.1.2 and
192.168.1.3
On node 192.168.1.x, I have a UDP socket that binds to node
192.168.1.x
From node 192.168.1.1, I want to send broadcast datagrams (address
192.168.1.255) and receive those datagrams on nodes 192.168.1.2 and
192.168.1.3 ONLY
The issue is that I can send broadcast datagrams, but I can't receive
them
I'm able to receive broadcast datagrams only if I bind my UDP socket
to address INETADDR_ANY, but in this case, I receive broadcast
datagrams that I send
Is it possible to receive broadcast datagrams with binding my UDP
socket to local address 192.168.1.x?
Thank you in advance.