Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 82153
Status: resolved
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: am [...] jobindex.dk
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Some SSL sites still hang LWP
Date: Fri, 21 Dec 2012 11:18:25 +0100
To: bug-libwww-perl [...] rt.cpan.org
From: Anders Melchiorsen <am [...] jobindex.dk>
This program will currently hang: perl -e 'use LWP::Simple; print get("https://www.geocaching.com");' It is apparently fixed by this patch, but I have a feeling that it might break something else? --- a/perl-5.16.2/lib/site_perl/5.16.2/Net/HTTP/Methods.pm +++ b/perl-5.16.2/lib/site_perl/5.16.2/Net/HTTP/Methods.pm @@ -233,7 +233,6 @@ sub my_read { return length($_[0]); } else { - die "read timeout" unless $self->can_read; return $self->sysread($_[0], $len); } } Best regards, Anders. -- Anders Melchiorsen, Programmer, am@jobindex.dk http://www.jobindex.dk/
Subject: Re: [rt.cpan.org #82153] AutoReply: Some SSL sites still hang LWP
Date: Mon, 07 Jan 2013 16:42:59 +0100
To: bug-libwww-perl [...] rt.cpan.org
From: Anders Melchiorsen <am [...] jobindex.dk>
Probable duplicate of https://rt.cpan.org/Ticket/Dis play.html?id=81237 <https://rt.cpan.org/Ticket/Display.html?id=81237> DOY's fix works for me.