Uses of Class
iglu.net.PortServer

Packages that use PortServer
iglu.examples Some examples to illustrate how the classes work. 
iglu.net Classes to make TCP/IP programming easier.  Includes a multi-threaded server class. 
 

Uses of PortServer in iglu.examples
 

Constructors in iglu.examples with parameters of type PortServer
ProxyServerExample.myURLHandler(java.net.Socket client, PortServer ms)
          This is the critical part to getting the proxy server going.
 

Uses of PortServer in iglu.net
 

Fields in iglu.net declared as PortServer
protected  PortServer ClientHandler.myServer
          This clienthandler's server.
 PortServer PortServerThread.psvr
          The PortServer it is using.
 

Methods in iglu.net with parameters of type PortServer
 void ClientHandler.init(java.net.Socket client, PortServer ms)
           
 ClientHandler PortServer.getWatcher(java.net.Socket client, PortServer ms)
          This returns a ClientHandler which handles the input from the client.
 ClientHandler ClientCreator.CreateClient(java.net.Socket client, PortServer myServer)
          returns an object descended from ClientHandler which knows how to create client threads to handle client connections to the server's port.
 

Constructors in iglu.net with parameters of type PortServer
WebHandler(java.net.Socket client, PortServer ms)
          Initialize the variables for this class
ClientHandler(java.net.Socket client, PortServer ms)
          Constructor for the ClientHandler.