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);
Is there any better to way to check if I can receive a given IP Multicast transmission. Following code works fine but there is a problem in this code - it ...