1 /*
2 * Copyright (c) 2007, 2018, 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 */
23
24 /* @test
25 * @bug 4640544 8044773
26 * @summary Unit test for ServerSocketChannel setOption/getOption/options
27 * methods.
28 * @modules jdk.net
29 * @requires !vm.graal.enabled
30 * @run main SocketOptionTests
31 * @run main/othervm --limit-modules=java.base SocketOptionTests
32 */
33
34 import java.nio.channels.*;
35 import java.net.*;
36 import java.io.IOException;
37 import java.util.*;
38 import static java.net.StandardSocketOptions.*;
39 import static jdk.net.ExtendedSocketOptions.*;
40
41 public class SocketOptionTests {
42
43 private static final int DEFAULT_KEEP_ALIVE_PROBES = 7;
44 private static final int DEFAULT_KEEP_ALIVE_TIME = 1973;
45 private static final int DEFAULT_KEEP_ALIVE_INTVL = 53;
46
47 static void checkOption(ServerSocketChannel ssc, SocketOption name, Object expectedValue)
48 throws IOException
49 {
|
1 /*
2 * Copyright (c) 2007, 2026, 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 */
23
24 /* @test
25 * @bug 4640544 8044773
26 * @summary Unit test for ServerSocketChannel setOption/getOption/options
27 * methods.
28 * @modules jdk.net
29 * @run main SocketOptionTests
30 * @run main/othervm --limit-modules=java.base SocketOptionTests
31 */
32
33 import java.nio.channels.*;
34 import java.net.*;
35 import java.io.IOException;
36 import java.util.*;
37 import static java.net.StandardSocketOptions.*;
38 import static jdk.net.ExtendedSocketOptions.*;
39
40 public class SocketOptionTests {
41
42 private static final int DEFAULT_KEEP_ALIVE_PROBES = 7;
43 private static final int DEFAULT_KEEP_ALIVE_TIME = 1973;
44 private static final int DEFAULT_KEEP_ALIVE_INTVL = 53;
45
46 static void checkOption(ServerSocketChannel ssc, SocketOption name, Object expectedValue)
47 throws IOException
48 {
|