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 @_;