Help for this page

Select Code to Download


  1. or download this
    use strict;
    use IO::Socket;
    ...
            print $line. "\n";
    }
    close $remote;                  # Close socket
    
  2. or download this
    use IO::Socket qw(:DEFAULT :crlf);
    use IO::File;
    ...
            print $x "Testing\n";
    }