no timeout

Abe Wickham (awickham@cbt.up.ac.za)
Thu, 28 Sep 2000 09:08:08 +0000


Hi

Some of my LWP connections never "time out" with the process "Sleeping"
and the socket staying "ESTABLISHED".

Does anyone know what the major causes of this can be, or what I can do
to be more sure of a "time out" ?

This mostly works :

  my $ua = new LWP::UserAgent;
  $ua->agent("LWP::UserAgent");
  $ua->no_proxy($domain);
  
  my $req = new HTTP::Request('POST',"https://$url");

  my $res = $ua->request($req);


Regards

Abe