Uses of Class
net.clackrouter.application.ClackApplication

Packages that use ClackApplication
net.clackrouter.application Support for applications that run on top of a Clack host's network stack. 
net.clackrouter.example   
 

Uses of ClackApplication in net.clackrouter.application
 

Subclasses of ClackApplication in net.clackrouter.application
 class HTTPGetter
          A simple Clack application to send an HTTP request to a webserver and print the response
 class Ifconfig
           
 class MiniWebServer
          A Clack application that acts as a VERY simple webserver
 class Ping
          A simplified version of the "ping" command to send ICMP echo requests to a remote host.
 class Show
           
 class TCPRedirector
          A Clack application that uses a Clack host to proxy to a real Internet host, thus redirecting the TCP traffic.
 class UDPRedirector
          A Clack application that uses a Clack host to proxy to a real Internet host, thus redirecting the UDP traffic.
 class UnixRoute
           
 

Methods in net.clackrouter.application that return ClackApplication
 ClackApplication TCPSocket.getCurrentApplication()
          the application using this TCPSocket
 ClackApplication ApplicationManager.runApplication(Router r, java.lang.String[] command_args, ClackShell shell)
           
 

Methods in net.clackrouter.application with parameters of type ClackApplication
 void TCPSocket.setCurrentApplication(ClackApplication app)
          Set the Clack application that is the parent of this application (used internally)
 

Uses of ClackApplication in net.clackrouter.example
 

Subclasses of ClackApplication in net.clackrouter.example
 class HelloApp