Package | Description |
---|---|
socks |
Modifier and Type | Class and Description |
---|---|
class |
Socks4Proxy
Proxy which describes SOCKS4 proxy.
|
class |
Socks5Proxy
SOCKS5 Proxy.
|
Modifier and Type | Field and Description |
---|---|
protected Proxy |
Proxy.chainProxy |
protected static Proxy |
Proxy.defaultProxy |
protected Proxy |
SocksSocket.proxy |
protected Proxy |
SocksServerSocket.proxy |
Modifier and Type | Method and Description |
---|---|
protected Proxy |
Socks5Proxy.copy() |
protected Proxy |
Socks4Proxy.copy() |
protected abstract Proxy |
Proxy.copy() |
Proxy |
Proxy.getChainProxy()
Get proxy which is used to connect to this proxy.
|
static Proxy |
Proxy.getDefaultProxy()
Get current default proxy.
|
Proxy |
SocksDialog.getProxy()
Displays SOCKS configuartion dialog.
|
static Proxy |
ProxyServer.getProxy()
Get proxy.
|
Proxy |
SocksDialog.getProxy(Proxy p)
Initialises dialog to given proxy and displays SOCKS configuartion
dialog.
|
static Proxy |
Proxy.parseProxy(String proxy_entry)
Parses strings in the form: host[:port:user:password], and creates
proxy from information obtained from parsing.
|
Modifier and Type | Method and Description |
---|---|
Proxy |
SocksDialog.getProxy(Proxy p)
Initialises dialog to given proxy and displays SOCKS configuartion
dialog.
|
void |
Proxy.setChainProxy(Proxy chainProxy)
Set the proxy which should be used to connect to given proxy.
|
static void |
Proxy.setDefaultProxy(Proxy p)
Sets default proxy.
|
static void |
ProxyServer.setProxy(Proxy p)
Set proxy.
|
Constructor and Description |
---|
Socks4Proxy(Proxy p,
InetAddress proxyIP,
int proxyPort,
String user)
Creates the SOCKS4 proxy
|
Socks4Proxy(Proxy p,
String proxyHost,
int proxyPort,
String user)
Creates the SOCKS4 proxy
|
Socks5DatagramSocket(Proxy p,
int port,
InetAddress ip)
Constructs datagram socket for communication over specified proxy.
|
Socks5Proxy(Proxy p,
InetAddress proxyIP,
int proxyPort)
Creates SOCKS5 proxy.
|
Socks5Proxy(Proxy p,
String proxyHost,
int proxyPort)
Creates SOCKS5 proxy.
|
SocksDialog(Frame parent,
Proxy init_proxy)
Creates SOCKS configuration dialog and initialises it to given proxy.
|
SocksServerSocket(Proxy p,
InetAddress ip,
int port)
Creates ServerSocket capable of accepting one connection
through the firewall, uses given proxy.
|
SocksServerSocket(Proxy p,
String host,
int port)
Creates ServerSocket capable of accepting one connection
through the firewall, uses given proxy.
|
SocksSocket(InetAddress ip,
int port,
Proxy proxy) |
SocksSocket(Proxy p,
InetAddress ip,
int port)
Connects to given ip and port using given Proxy server.
|
SocksSocket(Proxy p,
String host,
int port)
Connects to host port using given proxy server.
|
SocksSocket(String host,
int port,
Proxy proxy)
These 2 constructors are used by the SocksServerSocket.
|
Copyright © 2024. All rights reserved.