Help for this page

Select Code to Download


  1. or download this
     eval {
       $sock = Net::SSL->new(
    ...
       print join( "\t", $host, $interface, $ip, $port,
         'no connection found' ), "\n";
     }
    
  2. or download this
      my $client = IO::Socket::SSL->new("$ip:$port");
      if ($client) {
    ...
        print join( "\t", $host, $interface, $ip, $port, 'no connection' )
    +,
          "\n";
      }