Green Spiral has asked for the wisdom of the Perl Monks concerning the following question:
It is being ran on a Unix machine if that makes any difference.my $sock = new IO::Socket::INET ( LocalAddr => 'localhost', LocalPort => 1209, Proto => 'tcp', Listen => 1, Reuse => 1, ); die "$!" unless $sock; my $new_sock = $sock->accept(); close ($sock);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Basic Socket Help
by LazerRed (Pilgrim) on Jul 08, 2003 at 01:43 UTC | |
Re: Basic Socket Help
by Dog and Pony (Priest) on Jul 08, 2003 at 05:18 UTC |