Help for this page

Select Code to Download


  1. or download this
    use Msg;
    use strict;
    my $host = 'localhost';
    ...
            print "$msg\n";
        }
    }
    
  2. or download this
    use Msg;
    $conn = Msg->connect('localhost', 8080);
    die "Error: Could not connect\n" unless $conn;
    $conn->send_now("Message $i");
    ($msg, $err) = $conn->rcv_now();