Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
for ($i=0; $i < $MAX_CLIENTS_PER_CHILD; $i++) { ($client) = $server->accept( ) or last; #Begin Grab incoming data my $data; my $rv = $client->recv($data,POSIX::BUFSIZ, 0); #End Grab print $data ."\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Pre-Forking Server, Reading client data
by Zaxo (Archbishop) on Aug 15, 2005 at 00:38 UTC | |
|
Re: Pre-Forking Server, Reading client data
by merlyn (Sage) on Aug 15, 2005 at 00:53 UTC | |
by Zaxo (Archbishop) on Aug 15, 2005 at 00:58 UTC |