Help for this page

Select Code to Download


  1. or download this
    sub recv_data{
        if(read_some_data){
    ...
            return;
        }
    }
    
  2. or download this
    while(($x, $y) = recv_data){
        ...
    }
    
  3. or download this
    while(1){
        my($x, $y) = recv_data;
        last unless defined $x;
        ...
    }