in reply to Re: Seeking explanation of IO::Socket behaviour
in thread Seeking explanation of IO::Socket behaviour

I don't think dws missed anything, but the Anonymous Monk forgot to mention: what is being fed to the parent's stdin? If this is run from the command line without (redirection from) a file name, and without a preceding pipeline process, it will run endlessly until the person who entered the command has the presence of mind to type in data, then type in "^D" (on unix) or "^Z" (on dos/windows) to signal the end of stdin.
  • Comment on Re: Re: Seeking explanation of IO::Socket behaviour

Replies are listed 'Best First'.
Re: Re: Re: Seeking explanation of IO::Socket behaviour
by Anonymous Monk on Apr 22, 2002 at 03:28 UTC
    Thanks for your wisdom. I really needed to know if the program will run indefinitely. Now I know it will. Thanks again.