< prev index next >

test/jdk/sun/security/ssl/SSLSocketImpl/NewSocketMethods.java

Print this page
rev 59107 : imported patch security

@@ -201,16 +201,13 @@
                         + socket.isInputShutdown());
             socket.setReuseAddress(true);
             System.out.println("Client getReuseAddress(): "
                         + socket.getReuseAddress());
 
-            // Solaris does not support set/get of IPV6_TCLASS when connected
-            if (!"SunOS".equals(System.getProperty("os.name"))) {
                 socket.setTrafficClass(8);
                 System.out.println("Client getTrafficClass(): "
                         + socket.getTrafficClass());
-            }
 
             os.write(237);
             os.flush();
             System.out.println("Client read: " + is.read());
             socket.close();
< prev index next >