in reply to Re: Re: RE(4): MP3 server with IO::Socket
in thread MP3 server with IO::Socket
Those extra warn statements lead me to believe that the parent was closing the $connection before the child got to call play_songs hence the sleep call. I chose "3" randomly, but it works fine now, and the sleep doesn't affect any of the logic or flow. Brainiacelse { #i'm the parent! warn "(Parent) I'm the parent\n"; #who connected? warn "(Parent) Connecton recieved ... ",$connection>peerhost,"\n"; #close the connection, the parent has already passed # it off to a child. warn "(Parent) Closing connection\n"; sleep 3; $connection->close(); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: RE(4): MP3 server with IO::Socket
by perlmonkey (Hermit) on Mar 10, 2001 at 05:27 UTC |