in reply to ActivePerl socket crashes on Checked Build Windows
G'day raandom,
I see you've used indirect object syntax:
my $sock = new IO::Socket::INET ( ... );
Here's what perlobj - Invoking Class Methods has to say about that:
Indirect Object Syntax
Outside of the file handle case, use of this syntax is discouraged, as it can confuse the Perl interpreter. See below for more details.
...
Do you encounter the same problems with:
my $sock = IO::Socket::INET::->new( ... );
[I don't have any of the versions you mention, so I'm unable to test this.]
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: ActivePerl socket crashes on Checked Build Windows
by raandom (Acolyte) on Jun 09, 2013 at 18:42 UTC | |
by syphilis (Archbishop) on Jun 10, 2013 at 09:20 UTC | |
by raandom (Acolyte) on Jun 15, 2013 at 05:19 UTC |