Arno Velds wrote:
As I mentioned in my somewhat lengthy post I have already worked
around the problem by not starting new threads from the connection
All I would like to know is that if I want to be a HTTP/1.0
server and only serve 1 request per connection why isn't the second
request from the same client answered even though they can be 20
seconds apart and separated by a $c->close on the server side.

If you want to be HTTP/1.0, then you need to tell the browser that.
You do this by setting:
   $HTTP::Daemon::PROTO = "HTTP/1.0";
This is then sent with the response so that the browser knows you're
not going to service another request on this socket.

Reply via email to