Help for this page

Select Code to Download


  1. or download this
     
    [01]Title[02][1C]payload[03]number[04]
    
    ...
    [1C] = ASCII FS
    [03] = ASCII ETX
    [04] = ASCII EOT
    
  2. or download this
    use strict;
    use IO::Socket;
    ...
    } 
    
    close($sock);
    
  3. or download this
    use strict;
    use POE           qw(Component::Server::TCP);
    ...
       my ($heap, $kernel, $input) = @_[HEAP, KERNEL, ARG0];
       print "Received: $input\n";
    }