Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/Socket/NullHost.java
41149 views
1
/*
2
* Copyright (c) 2002, 2019, 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
/*
25
* @test
26
* @bug 4712609
27
* @summary Socket(String host, int port) throws NullPointerException if host is null
28
*/
29
30
import java.net.*;
31
import java.io.IOException;
32
33
public class NullHost {
34
class Server extends Thread {
35
private ServerSocket svr;
36
37
public Server() throws IOException {
38
svr = new ServerSocket();
39
// The client side calls Socket((String) null, ...) which
40
// resolves to InetAddress.getByName((String)null) which in
41
// turns will resolve to the loopback address
42
svr.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
43
}
44
45
public int getPort() {
46
return svr.getLocalPort();
47
}
48
49
volatile boolean done;
50
public void shutdown() {
51
try {
52
done = true;
53
svr.close();
54
} catch (IOException e) {
55
}
56
}
57
58
public void run() {
59
Socket s;
60
try {
61
while (!done) {
62
s = svr.accept();
63
s.close();
64
}
65
} catch (IOException e) {
66
if (!done) e.printStackTrace();
67
}
68
}
69
}
70
71
public static void main(String[] args) throws IOException {
72
NullHost n = new NullHost();
73
}
74
75
public NullHost () throws IOException {
76
Server s = new Server();
77
int port = s.getPort();
78
s.start();
79
try {
80
try (var sock = new Socket((String)null, port)) {}
81
try (var sock = new Socket((String)null, port, true)) {}
82
try (var sock = new Socket((String)null, port, null, 0)) {}
83
} catch (NullPointerException e) {
84
throw new RuntimeException("Got a NPE");
85
} finally {
86
s.shutdown();
87
}
88
}
89
}
90
91