< prev index next >

test/jdk/java/nio/channels/TestUtil.java

Print this page
rev 59383 : [mq]: final
   1 /*
   2  * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  59             try {
  60                 ssc.socket().bind(isa);
  61             } catch (IOException x) {
  62                 continue;
  63             }
  64             return p;
  65         }
  66     }
  67 
  68     // A more convenient form of bind(ServerSocketChannel) that returns a full
  69     // socket address.
  70     //
  71     static InetSocketAddress bindToRandomPort(ServerSocketChannel ssc)
  72         throws IOException
  73     {
  74         int p = bind(ssc);
  75         return new InetSocketAddress(InetAddress.getLocalHost(), p);
  76     }
  77 
  78     private static String osName = System.getProperty("os.name");
  79 
  80     static boolean onSolaris() {
  81         return osName.startsWith("SunOS");
  82     }
  83 
  84     static boolean onWindows() {
  85         return osName.startsWith("Windows");
  86     }
  87 }
   1 /*
   2  * Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  59             try {
  60                 ssc.socket().bind(isa);
  61             } catch (IOException x) {
  62                 continue;
  63             }
  64             return p;
  65         }
  66     }
  67 
  68     // A more convenient form of bind(ServerSocketChannel) that returns a full
  69     // socket address.
  70     //
  71     static InetSocketAddress bindToRandomPort(ServerSocketChannel ssc)
  72         throws IOException
  73     {
  74         int p = bind(ssc);
  75         return new InetSocketAddress(InetAddress.getLocalHost(), p);
  76     }
  77 
  78     private static String osName = System.getProperty("os.name");




  79 
  80     static boolean onWindows() {
  81         return osName.startsWith("Windows");
  82     }
  83 }
< prev index next >