src/share/classes/com/sun/nio/sctp/MessageInfo.java

Print this page

        

@@ -92,11 +92,11 @@
     public static MessageInfo createOutgoing(SocketAddress address,
                                              int streamNumber) {
         if (streamNumber < 0 || streamNumber > 65536)
             throw new IllegalArgumentException("Invalid stream number");
 
-        return new sun.nio.ch.SctpMessageInfoImpl(null, address, streamNumber);
+        return new sun.nio.ch.sctp.SctpMessageInfoImpl(null, address, streamNumber);
     }
     /**
      * Creates a {@code MessageInfo} instance suitable for use when
      * sending a message to a given association. Typically used for
      * {@code SctpMultiChannel} when an association has already been setup.

@@ -131,12 +131,12 @@
             throw new IllegalArgumentException("association cannot be null");
 
         if (streamNumber < 0 || streamNumber > 65536)
             throw new IllegalArgumentException("Invalid stream number");
 
-        return new sun.nio.ch.SctpMessageInfoImpl(association, address,
-                streamNumber);
+        return new sun.nio.ch.sctp.SctpMessageInfoImpl(association,
+                                                       address, streamNumber);
     }
 
     /**
      * Returns the source socket address if the message has been received,
      * otherwise the preferred destination of the message to be sent.