Skip Menu |

This queue is for tickets about the IO-Socket-SSL CPAN distribution.

Report information
The Basics
Id: 23706
Status: resolved
Priority: 0/
Queue: IO-Socket-SSL

People
Owner: Nobody in particular
Requestors: dmuey [...] cpan.org
Cc:
AdminCc:

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



Subject: "Missing" funtions
TELL() and BINMODE() get called at times and the server dies since they don't exist. This patch resolves that, please consider adding it ASAP so it will be more reliable and solid without needing to patch every installation of it. Thanks, have a great day! --- SSL.pm.orig Wed Nov 29 13:59:01 2006 +++ SSL.pm Wed Nov 29 14:00:43 2006 @@ -774,6 +774,10 @@ sub FILENO { ${shift()}->fileno (@_) } +sub TELL { -1; } +sub BINMODE { 0; } + + sub CLOSE { #<---- Do not change this function! my $ssl = ${$_[0]}; local @_;
fixed in 1.02 On Mi. 29. Nov. 2006, 15:48:55, DMUEY wrote: Show quoted text
> TELL() and BINMODE() get called at times and the server dies since > they don't exist. > > This patch resolves that, please consider adding it ASAP so it will be > more reliable and solid > without needing to patch every installation of it. > > Thanks, have a great day! > > --- SSL.pm.orig Wed Nov 29 13:59:01 2006 > +++ SSL.pm Wed Nov 29 14:00:43 2006 > @@ -774,6 +774,10 @@ > > sub FILENO { ${shift()}->fileno (@_) } > > +sub TELL { -1; } > +sub BINMODE { 0; } > + > + > sub CLOSE { #<---- Do not change this > function! > my $ssl = ${$_[0]}; > local @_;