in reply to Curses and Sockets

3 minutes of searching comp.lang.perl.misc came up with this solution
Good luck!

Replies are listed 'Best First'.
Re^2: Curses and Sockets
by Withigo (Friar) on Oct 09, 2007 at 07:29 UTC
    Just in case it's not so clear how that link demonstrates a possible solution, Curses uses STDIN, STDOUT, STDERR. So in a BEGIN block before initializing Curses, create a new IO pty and then redirect the standard file handles to/from it like in the example script in the link. Then Curses is connected to the pty.
    Hope it works!
      Hmmm, sounds promising!

      I suspect I'll have to switch to a multi-threading model so each client socket can have a separate thread and thus keep its own copy of Curses to play with.

      Thanks again!