Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    use strict;
    use warnings;
    ...
    my $client = $server->accept() or die;
    $server->close;
    say 'Connection from ' . $client->peerhost;
    
  2. or download this
    use 5.010;
    use strict;
    use warnings;
    ...
                                       PeerPort => 8000,
                                       Timeout  => 10) or die;
    say 'Client connected';
    
  3. or download this
    Server listening...
    Connection from 127.0.0.1
    
  4. or download this
    Server listening...
    accept: timeout ...propagated at server.pl line 16.