MF has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use warnings; use strict; use IO::Socket; my $sock = new IO::Socket::INET(PeerAddr => 'x.y.z', PeerPort => '25', Proto => 'tcp',); print "bier"; print $sock "HELO x\n"; print <$sock>; close ($sock);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IO::Socket question
by borisz (Canon) on Feb 11, 2004 at 21:58 UTC | |
by MF (Monk) on Feb 11, 2004 at 22:12 UTC | |
|
Re: IO::Socket question
by Abigail-II (Bishop) on Feb 11, 2004 at 22:20 UTC |