Help for this page

Select Code to Download


  1. or download this
    while (my $conn = $sock->accept()){
    
        print $conn `my_script_insrtruction`;
    }
    
  2. or download this
    while ($buff ne 'end connection'){
        $client->recv($buff,1000);
        print $buff;
    }