Skip Menu |

This queue is for tickets about the Net-OpenID-Consumer CPAN distribution.

Report information
The Basics
Id: 68046
Status: rejected
Priority: 0/
Queue: Net-OpenID-Consumer

People
Owner: Nobody in particular
Requestors: joey [...] kitenet.net
Cc:
AdminCc:

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



Subject: no ipv6 support
Trying to log in with an openid that is only accessible by ipv6 fails. I tried using Net::INET6Glue to work around perl's known ipv6 problems, but it was not enough to get this module to work. Although it did get LWP working to the point that it could download the openid provider's page, this module must do something that defeats Net::INET6Glue.
On Mon May 09 16:32:03 2011, JOEY wrote: Show quoted text
> Trying to log in with an openid that is only accessible by ipv6 fails. > > I tried using Net::INET6Glue to work around perl's known ipv6
problems, Show quoted text
> but it was not enough to get this module to work. Although it did get
LWP Show quoted text
> working to the point that it could download the openid provider's
page, Show quoted text
> this module must do something that defeats Net::INET6Glue.
I bet LWPx::ParanoidAgent is defeating the INET6Glue module. It implements its own DNS lookups and specifically looks for "A" records, so won't see "AAAA" records and thus this case will look to Net::OpenID::Consumer like the hostname was invalid. This should really be fixed inside LWPx::ParanoidAgent, making it aware of "AAAA" records.
Subject: Re: [rt.cpan.org #68046] no ipv6 support
Date: Mon, 9 May 2011 18:15:25 -0400
To: Martin Atkins via RT <bug-Net-OpenID-Consumer [...] rt.cpan.org>
From: Joey Hess <joey [...] kitenet.net>
Martin Atkins via RT wrote: Show quoted text
> I bet LWPx::ParanoidAgent is defeating the INET6Glue module. It > implements its own DNS lookups and specifically looks for "A" records, > so won't see "AAAA" records and thus this case will look to > Net::OpenID::Consumer like the hostname was invalid.
I can confirm that's it. -- see shy jo
Download signature.asc
application/pgp-signature 828b

Message body not shown because it is not plain text.

since there seems to be consensus that the problem is in LWPx::ParanoidAgent and it's not something we can fix in our part of the world, I'm going to close this. thanks for the report.