Help for this page

Select Code to Download


  1. or download this
    while( $client = $server->accept() ) {
        if( my $pid = fork() ){
    ...
            KidStuff( $client , $logger, $pid, ... );
        }
    }