Ron F. wrote:
> Sorry - I should have explained, what I see is:
> "Can't use an undefined value as a symbol reference at testSSL.pm line
> 6.!"
>
> I assume this means that $cl remains undefined because IO::Socket:SSL
> failed.
Yes an error. Enable module debugging with the following change
Code:
--------------------
use strict;
use IO::Socket::SSL qw(debug3);
# simple client
my $cl = IO::Socket::SSL->new('www.google.com:443');
print $cl "GET / HTTP/1.0\r\n\r\n";
print <$cl>;
--------------------
------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=111191
_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter