Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $|=1;
    while ($listen->recv($buf,1)) { print $buf }
    die "recv: $!\n";
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $|=1;
    while (recv(SOCKET,$buf,1,0)) { print $buf }
    die "recv: $!\n";