in reply to Re^2: telnet question
in thread telnet question

So your saying Net::Telnet anf IO::Select would be the the one i use and fork?if i got this right.

Replies are listed 'Best First'.
Re^4: telnet question
by erroneousBollock (Curate) on Nov 15, 2007 at 02:13 UTC
    No, you would not normally use IO::Select and fork() together. The three main approaches to parallel communications are:
    • threaded: use threads;
    • forking: fork()
    • multiplexed: useIO::Select;

    As I said above, I don't know for sure that you could get Net::Telnet to work with IO::Select (it has to do with buffering).

    -David