Error on MulticastSocket.joinGroup()

Posted by Pedro Ghilardi on Stack Overflow See other posts from Stack Overflow or by Pedro Ghilardi
Published on 2010-03-28T21:04:55Z Indexed on 2010/03/28 21:13 UTC
Read the original article Hit count: 149

Filed under:
|
|

I'm trying to execute a simple example of Multicast sockets on Java.

    MulticastSocket s = new MulticastSocket(6789);
 InetAddress group = InetAddress.getByName("230.1.1.1");
 s.joinGroup(group);

This code generates the error: IP_ADD_MEMBERSHIP failed (out of hardware filters?)

Any idea? Thanks

© Stack Overflow or respective owner

Related posts about multicast

Related posts about multicastsocket