Help for this page

Select Code to Download


  1. or download this
    sub write_binary {
      my $fh = shift;
    ...
      chomp;
      return pack("H*", $line);
    }
    
  2. or download this
    my $server = ...;
    
    ...
    ...
    $msg = $server->receive_message();
    ...