Uses of Class
socks.Proxy

Packages that use Proxy
socks   
 

Uses of Proxy in socks
 

Subclasses of Proxy in socks
 class Socks4Proxy
          Proxy which describes SOCKS4 proxy.
 class Socks5Proxy
          SOCKS5 Proxy.
 

Methods in socks that return Proxy
 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(java.lang.String proxy_entry)
          Parses strings in the form: host[:port:user:password], and creates proxy from information obtained from parsing.
 

Methods in socks with parameters of type Proxy
 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.
 

Constructors in socks with parameters of type Proxy
Socks4Proxy(Proxy p, java.net.InetAddress proxyIP, int proxyPort, java.lang.String user)
          Creates the SOCKS4 proxy
Socks4Proxy(Proxy p, java.lang.String proxyHost, int proxyPort, java.lang.String user)
          Creates the SOCKS4 proxy
Socks5DatagramSocket(Proxy p, int port, java.net.InetAddress ip)
          Constructs datagram socket for communication over specified proxy.
Socks5Proxy(Proxy p, java.net.InetAddress proxyIP, int proxyPort)
          Creates SOCKS5 proxy.
Socks5Proxy(Proxy p, java.lang.String proxyHost, int proxyPort)
          Creates SOCKS5 proxy.
SocksDialog(java.awt.Frame parent, Proxy init_proxy)
          Creates SOCKS configuration dialog and initialises it to given proxy.
SocksServerSocket(Proxy p, java.net.InetAddress ip, int port)
          Creates ServerSocket capable of accepting one connection through the firewall, uses given proxy.
SocksServerSocket(Proxy p, java.lang.String host, int port)
          Creates ServerSocket capable of accepting one connection through the firewall, uses given proxy.
SocksSocket(Proxy p, java.net.InetAddress ip, int port)
          Connects to given ip and port using given Proxy server.
SocksSocket(Proxy p, java.lang.String host, int port)
          Connects to host port using given proxy server.