Here are my modifications of the nightly build 28.02.

The changes in the files are indepentent of the other file. So you can
decide
which file you take.

Hope that my following modification will not loose any HTTP request:

   System.out.print("Creating Daemon Socket...");
   MainSocket = new ServerSocket(daemonPort);
   MainSocket.setSoTimeout(1000);
   System.out.println(" port " + daemonPort + " OK");
   System.out.println("Proxy up and running!");
   while(running)
   {
    try {
        // Listen on main socket
        Socket ClientSocket = MainSocket.accept();
        // Pass request to new proxy thread
        Proxy thd = new Proxy(ClientSocket, cache,
config,target,cookieManager);
        thd.start();
       }
    catch (java.io.InterruptedIOException ex) {
    }
   }
   System.out.println("Proxy stoppedd!");


Alexander

Attachment: Daemon.java
Description: Binary data

Attachment: ProxyControlGui.java
Description: Binary data

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to