Uses of Class
socks.SocksException

Packages that use SocksException
socks   
 

Uses of SocksException in socks
 

Methods in socks that throw SocksException
abstract  void ProxyMessage.read(java.io.InputStream in)
          Initialises Message from the stream.
abstract  void ProxyMessage.read(java.io.InputStream in, boolean client_mode)
          Initialises Message from the stream.
abstract  void ProxyMessage.write(java.io.OutputStream out)
          Writes the message to the stream.
 

Constructors in socks that throw SocksException
Socks5DatagramSocket()
          Construct Datagram socket for communication over SOCKS5 proxy server.
Socks5DatagramSocket(int port)
          Construct Datagram socket for communication over SOCKS5 proxy server.
Socks5DatagramSocket(int port, java.net.InetAddress ip)
          Construct Datagram socket for communication over SOCKS5 proxy server.
Socks5DatagramSocket(Proxy p, int port, java.net.InetAddress ip)
          Constructs datagram socket for communication over specified proxy.
SocksServerSocket(java.net.InetAddress ip, int port)
          Creates ServerSocket capable of accepting one connection through the firewall, uses default 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.
SocksServerSocket(java.lang.String host, int port)
          Creates ServerSocket capable of accepting one connection through the firewall, uses default Proxy.
SocksSocket(java.net.InetAddress ip, int port)
          Tryies to connect to given ip and port using default 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.
SocksSocket(java.lang.String host, int port)
          Tryies to connect to given host and port using default proxy.