Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/Socks/BadProxySelector.java
41149 views
1
/*
2
* Copyright (c) 2015, 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 7178362
27
* @run main/othervm BadProxySelector
28
*/
29
30
import java.net.InetAddress;
31
import java.net.InetSocketAddress;
32
import java.net.Proxy;
33
import java.net.ProxySelector;
34
import java.net.Socket;
35
import java.net.SocketAddress;
36
import java.net.ServerSocket;
37
import java.net.URI;
38
import java.util.ArrayList;
39
import java.util.List;
40
import java.io.*;
41
42
public class BadProxySelector {
43
public static void main(String[] args) throws Exception {
44
ProxySelector.setDefault(new HTTPProxySelector());
45
try (ServerSocket ss = new ServerSocket(0, 0, InetAddress.getLocalHost());
46
Socket s1 = new Socket(ss.getInetAddress(), ss.getLocalPort());
47
Socket s2 = ss.accept()) {
48
}
49
50
ProxySelector.setDefault(new NullHTTPProxySelector());
51
try (ServerSocket ss = new ServerSocket(0, 0, InetAddress.getLocalHost());
52
Socket s1 = new Socket(ss.getInetAddress(), ss.getLocalPort());
53
Socket s2 = ss.accept()) {
54
}
55
}
56
57
// always returns bogus HTTP proxies
58
private static class HTTPProxySelector extends ProxySelector {
59
@Override
60
public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {}
61
62
@Override
63
public List<Proxy> select(URI uri) {
64
System.out.println(this.getClass().getSimpleName() + " called for " + uri);
65
List<Proxy> proxies = new ArrayList<>();
66
proxies.add(new Proxy(Proxy.Type.HTTP,
67
new InetSocketAddress("localhost", 0)));
68
proxies.add(new Proxy(Proxy.Type.HTTP,
69
new InetSocketAddress("localhost", 0)));
70
return proxies;
71
}
72
}
73
74
private static class NullHTTPProxySelector extends ProxySelector {
75
@Override
76
public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {}
77
78
@Override
79
public List<Proxy> select(URI uri) {
80
System.out.println(this.getClass().getSimpleName() + " called for " + uri);
81
List<Proxy> proxies = new ArrayList<>();
82
proxies.add(null);
83
proxies.add(new Proxy(Proxy.Type.HTTP,
84
new InetSocketAddress("localhost", 0)));
85
return proxies;
86
}
87
}
88
}
89
90