On Thu, 21 Oct 2004, Udo Pokojski wrote:

Now I end up in a timeout. After authenticating myself, the proxy is not
fetching the URL.

Have you distabled buffering of stdout? If not your helper never sends the result back to Squid.. (sits in the libc stdio buffer waiting for your application to write more data to fill the buffer...)


In C

   setbuf(stdout, NULL);

anywhere before the main loop.

Regards
Henrik

Reply via email to