> On May 15, 2016, at 5:05 AM, Unknown User wrote:
>
> The port is not in use before i run the script. It is in use when i
> run it. However the problem is that only one iteration runs. I
> expected all to run.
Your ‘listen’ statement is in a loop. Therefore, the second time through the
loop,
The port is not in use before i run the script. It is in use when i
run it. However the problem is that only one iteration runs. I
expected all to run.
On Sun, May 15, 2016 at 1:52 AM, Jon E Price wrote:
> Perhaps port 8989 is in use?
>
> Have you tried >telnet 127.0 0.1 8989
>
> Can you conn
Unknown User writes:
> I wrote this scrpt to fork off a few child processes, then the child
> processes process some data, and send the data back to the parent
> through a tcp socket.
> This is not working as i expected it would. Why not? How can it be corrected?
>
>
> #!/usr/bin/perl -w
> use st
On 05/13/2016 11:30 AM, Unknown User wrote:
I wrote this scrpt to fork off a few child processes, then the child
processes process some data, and send the data back to the parent
through a tcp socket.
This is not working as i expected it would. Why not? How can it be corrected?
there are many i
Perhaps port 8989 is in use?
Have you tried >telnet 127.0 0.1 8989
Can you connect?
On May 14, 2016, at 3:56 PM, Unknown User wrote:
>I wrote this scrpt to fork off a few child processes, then the child
>processes process some data, and send the data back to the parent
>through a tcp socke
I wrote this scrpt to fork off a few child processes, then the child
processes process some data, and send the data back to the parent
through a tcp socket.
This is not working as i expected it would. Why not? How can it be corrected?
#!/usr/bin/perl -w
use strict;
use IO::Socket::INET;
print $$,