OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Socks5Proxy
(Results
1 - 3
of
3
) sorted by null
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Proxy.java
37
* The
Socks5Proxy
class represents a local SOCKS5 proxy server. It can be enabled/disabled by
69
public class
Socks5Proxy
{
72
private static
Socks5Proxy
socks5Server;
94
private
Socks5Proxy
() {
112
public static synchronized
Socks5Proxy
getSocks5Proxy() {
114
socks5Server = new
Socks5Proxy
();
319
if (
Socks5Proxy
.this.serverSocket.isClosed()
325
socket =
Socks5Proxy
.this.serverSocket.accept();
405
if (!
Socks5Proxy
.this.allowedConnections.contains(responseDigest)) {
418
Socks5Proxy
.this.connectionMap.put(responseDigest, socket);
[
all
...]
Socks5ClientForInitiator.java
69
Socks5Proxy
socks5Server =
Socks5Proxy
.getSocks5Proxy();
Socks5BytestreamManager.java
307
Socks5Proxy
.getSocks5Proxy().stop();
468
Socks5Proxy
socks5Proxy
=
Socks5Proxy
.getSocks5Proxy();
472
socks5Proxy
.addTransfer(digest);
511
socks5Proxy
.removeTransfer(digest);
645
Socks5Proxy
socks5Server =
Socks5Proxy
.getSocks5Proxy();
Completed in 1580 milliseconds