s7upify has asked for the wisdom of the Perl Monks concerning the following question:
And it dies at that point. I have tried reading through the debugger output but have no idea what to look for. $SOCK is undef by the end. Thanks!#!/usr/bin/env perl use IO::Socket; my $SOCK; $SOCK = new IO::Socket::INET ( LocalHost => 'node01', LocalPort => 9000, Proto => 'tcp', Listen => 1, Reuse => 1, ); die "Socket creation failed ..." unless $SOCK; ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Socket newbie: help with host setup
by Corion (Patriarch) on Oct 13, 2010 at 20:10 UTC | |
|
Re: Socket newbie: help with host setup
by kcott (Archbishop) on Oct 14, 2010 at 07:16 UTC |