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