HomeSort by relevance Sort by last modified time
    Searched full:socks (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/curl/docs/cmdline-opts/
socks4.d 15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.
socks4a.d 15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.
preproxy.d 6 Use the specified SOCKS proxy before connecting to an HTTP or HTTPS --proxy. In
7 such a case curl first connects to the SOCKS proxy and then connects (through
8 SOCKS) to the HTTP or HTTPS proxy. Hence pre proxy.
12 socks5h:// to request the specific SOCKS version to be used. No protocol
socks5-hostname.d 15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.
socks5.d 15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.
socks5-gssapi-service.d 6 The default service name for a socks server is rcmd/server-fqdn. This option
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 28 Proxy proxy = new Proxy(Proxy.Type.SOCKS, address);
32 new Proxy(Proxy.Type.SOCKS, null);
46 new Proxy(Proxy.Type.SOCKS, address1);
47 Proxy proxy4 = new Proxy(Proxy.Type.SOCKS, address1);
54 Proxy proxy5 = new Proxy(Proxy.Type.SOCKS, address1);
55 Proxy proxy6 = new Proxy(Proxy.Type.SOCKS, address2);
64 proxy = new Proxy(Proxy.Type.SOCKS, address);
65 assertEquals(Proxy.Type.SOCKS, proxy.type());
ProxySelectorTest.java 150 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1080))),
152 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1080))),
154 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1080))),
156 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1080))),
164 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1001))),
166 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1001))),
168 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1001))),
170 assertEquals(Arrays.asList(new Proxy(Proxy.Type.SOCKS, createUnresolved("a", 1001))),
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/
BUILD 6 jars = ["netty-codec-socks-4.1.6.Final.jar"],
14 source = "netty-codec-socks-4.1.6.Final.pom",
netty-codec-socks-4.1.6.Final.jar 
netty-codec-socks-4.1.6.Final.pom 26 <artifactId>netty-codec-socks</artifactId>
29 <name>Netty/Codec/Socks</name>
  /libcore/ojluni/src/main/java/java/net/
SocksSocketImpl.java 38 * SOCKS (V4 & V5) TCP socket implementation (RFC 1928).
129 throw new SocketException("Malformed reply from SOCKS server");
163 server, addr, serverPort, "SOCKS5", "SOCKS authentication", null);
212 // GSSName name = manager.createName("SERVICE:socks@"+server,
265 throw new SocketException("SOCKS V4 requires IPv4 only addresses");
283 throw new SocketException("Reply from SOCKS server has bad length: " + n);
285 throw new SocketException("Reply from SOCKS server has bad version");
293 ex = new SocketException("SOCKS request rejected");
296 ex = new SocketException("SOCKS server couldn't reach destination");
299 ex = new SocketException("SOCKS authentication failed")
    [all...]
Proxy.java 29 * This class represents a proxy setting, typically a type (http, socks) and
55 * Represents a SOCKS (V4 or V5) proxy.
57 SOCKS
67 * proxy settings (like SOCKS):
83 * Socks, a SocketAddress <b>must</b> be provided.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxyTest.java 37 // test SOCKS type proxy
38 proxy = new Proxy(Proxy.Type.SOCKS, address);
39 assertEquals(Proxy.Type.SOCKS, proxy.type());
60 // test SOCKS type proxy
62 proxy = new Proxy(Proxy.Type.SOCKS, null);
117 proxy = new Proxy(Proxy.Type.SOCKS, address);
134 proxy = new Proxy(Proxy.Type.SOCKS, address);
151 // SOCKS type
152 Proxy proxy3 = new Proxy(Proxy.Type.SOCKS, address1);
153 Proxy proxy4 = new Proxy(Proxy.Type.SOCKS, address2)
    [all...]
ProxySelectorTest.java 125 // set socks proxy
139 assertProxyEquals(proxyList, Proxy.Type.SOCKS, SOCKS_PROXY_HOST, SOCKS_PROXY_PORT);
166 // set socks proxy
183 assertProxyEquals(proxyList, Proxy.Type.SOCKS, SOCKS_PROXY_HOST,
199 // set socks proxy
220 // set socks proxy
233 assertProxyEquals(proxyList, Proxy.Type.SOCKS, SOCKS_PROXY_HOST, SOCKS_PROXY_PORT);
253 // set socks proxy
267 assertProxyEquals(proxyList, Proxy.Type.SOCKS, SOCKS_PROXY_HOST, SOCKS_PROXY_PORT);
316 // set socks prox
    [all...]
  /external/curl/docs/libcurl/opts/
CURLOPT_PRE_PROXY.3 42 A pre proxy is a SOCKS proxy that curl connects to before it connects to the
44 only be a SOCKS proxy.
47 of socks is used. Use socks4://, socks4a://, socks5:// or socks5h:// (the last
49 \fICURLPROXY_SOCKS5_HOSTNAME\fP type) to request the specific SOCKS version to
69 curl_easy_setopt(curl, CURLOPT_PREPROXY, "socks4://socks-proxy:1080");
  /frameworks/base/core/java/android/net/
PacProxySelector.java 42 private static final String SOCKS = "SOCKS ";
107 } else if (trimmed.startsWith(SOCKS)) {
108 Proxy proxy = proxyFromHostPort(Type.SOCKS, trimmed.substring(SOCKS.length()));
  /external/curl/tests/data/
test1212 30 noproxy setting together with socks proxy
test564 36 FTP RETR a file over a SOCKS proxy using the multi interface
test2055 52 Connect to specific host via SOCKS proxy and HTTP proxy (switch to tunnel mode automatically)
  /libcore/ojluni/src/main/java/sun/net/
SocksProxy.java 32 * Proxy wrapper class so we can determine the socks protocol version.
38 super(Proxy.Type.SOCKS, addr);
  /external/apache-harmony/luni/src/test/resources/net.resources/
README.txt 69 4. Start up a SOCKS server.
78 FTP and SOCKS servers and so on. Isolating these values in a properties file
88 that contains suitable property values if the HTTP, FTP and SOCKS servers were
107 * SocksServerTestHost : the fully qualified location of the SOCKS server used
110 * SocksServerTestPort : the test SOCKS server's port number
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 251 * The default implementation just picks the first non-SOCKS proxy
252 * from the list. If there are only SOCKS proxies,
289 case SOCKS:
290 // SOCKS hosts are not handled on the route level.
291 // The socket may make use of the SOCKS host though.
297 //@@@ log as warning or info that only a socks proxy is available?
298 // result can only be null if all proxies are socks proxies
299 // socks proxies are not handled on the route planning level
  /external/curl/lib/
url.h 51 curl_socket_t *socks,
54 curl_socket_t *socks,
  /external/webrtc/webrtc/base/
proxydetect_unittest.cc 82 // Verifies that SOCKS5 proxy is detected if configured. SOCKS uses a
88 SocketAddress proxy_address("proxy.socks.com", 6666);
90 prefs.append("user_pref(\"network.proxy.socks\", \"proxy.socks.com\");\n");

Completed in 4670 milliseconds

1 2 3 4 5 6 7 8