0
votes
0answers
114 views

How to set the “bindaddr” parameter of the in the constructor of java MulticastSocket?

Should I set the parameter to the multicast address or the unicast address of the network interface that I want to listen on? Below is the network interface list of my machine eth0:192.168.1.100/24 ...
1
vote
1answer
275 views

Java Multicast Socket not working on Windows (SocketPermission Exception)

When starting a Multicast java socket on windows I get the following error (firewall deactivated): java.security.AccessControlException: access denied (java.net.SocketPermission 230.0.0.1 ...
1
vote
0answers
166 views

How to disable loopback in a Windows PGM socket?

I'm using the standard Windows PGM socket implementation (also known as the "MSMQ PGM"), with RDM socket type. I have noticed that, as per this Microsoft link, the MulticastLoopBack socket option ...
3
votes
1answer
1k views

receive multicast from specific network interface on Linux

I'm trying to receive a multicast data from specific network interface on CentOS 5.5 sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; ...