Help for this page

Select Code to Download


  1. or download this
    use IO::Socket;
    $socket = IO::Socket::INET->new
    ...
    ) or die "Could Not open port";
    print $socket "Server message\n";
    close($socket);