Help for this page

Select Code to Download


  1. or download this
    sub handle_incoming
    {
    ...
           my $w = EV::io $client, EV::READ, \&handle_client;
           EV::loop;
    }
    
  2. or download this
    sub handle_client
    {
    ...
           $w->DESTROY unless defined $in;
           print "in=$in\n";
    }