in reply to streaming output to a socket

Can't you just set the output stream to automatically flush after every print? And I quote from perlvars...

$|

"If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel. Default is 0 (regardless of whether the channel is really buffered by the system or not; $| tells you only whether you've asked Perl explicitly to flush after each write). STDOUT will typically be line buffered if output is to the terminal and block buffered otherwise. Setting this variable is useful primarily when you are outputting to a pipe or socket, such as when you are running a Perl program under rsh and want to see the output as it's happening. This has no effect on input buffering."

Replies are listed 'Best First'.
Re^2: streaming output to a socket
by Scarborough (Hermit) on Oct 14, 2004 at 07:28 UTC
    I tried this first but it didn't work for me however the first two work just fine but I now have a problem getting the clients input to stream into a Tk gui so your answer might help me there.