Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4342535

Linux: java.net.MulticastSocket.joinGroup does not work on Linux

XMLWordPrintable

    • x86
    • linux



      Name: kaC94536 Date: 06/01/2000



      The following test shows that method MulticastSocket.joinGroup throws
      unexpectable exception.

      ---------------------------------------------------------------------

      import java.io.*;
      import java.net.*;

      public class JoinGroup {
        
          public static void main(String args[]) throws Exception {
              MulticastSocket soc = null;
              InetAddress sin = null;

              soc = new MulticastSocket();
              sin = InetAddress.getByName("224.80.80.80");
              soc.joinGroup(sin);
              soc.leaveGroup(sin);
          }
      }

      ----------------------------- output ---------------------------------

      linux-8$ java -version
      java version "1.3.0beta"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta-b07)
      Java HotSpot(TM) Client VM (build 1.3.0beta-b04, mixed mode)

      linux-8$ java JoinGroup
      Exception in thread "main" java.net.SocketException: error setting options
      at java.net.PlainDatagramSocketImpl.join(Native Method)
      at java.net.MulticastSocket.joinGroup(MulticastSocket.java:229)
      at JoinGroup.main(JoinGroup.java:24)

      ---------------------------------------------------------------------

      The following tests from regression testsuite fails due to this bug:

      test/java/net/MulticastSocket/JoinGroup.java
      test/java/net/MulticastSocket/Leave.java

      ======================================================================

      ======================================================================

            jccollet Jean-Christophe Collet (Inactive)
            kanisimosunw Konstantin Anisimov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: