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