bengmau has asked for the wisdom of the Perl Monks concerning the following question:
or should I use something else like IO::Socket::Inet? recommendations?my $session = new Net::Telnet (Timeout => 30); $session->open(Host => $host, Port => $port); while ($session) { my $line; $line=$session->getline(); .... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: use telnet to connect to tcp session and receive data
by Joost (Canon) on Jun 22, 2005 at 14:40 UTC | |
|
Re: use telnet to connect to tcp session and receive data
by dave0 (Friar) on Jun 22, 2005 at 14:30 UTC | |
by derby (Abbot) on Jun 22, 2005 at 14:51 UTC | |
by bengmau (Beadle) on Jun 22, 2005 at 15:10 UTC | |
|
Re: use telnet to connect to tcp session and receive data
by zentara (Cardinal) on Jun 22, 2005 at 19:12 UTC | |
|
Re: use telnet to connect to tcp session and receive data
by Anonymous Monk on Jun 23, 2005 at 19:21 UTC |