Help for this page

Select Code to Download


  1. or download this
    SSL_verify_mode => SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
    
  2. or download this
    #!/usr/bin/perl
    
    ...
      shutdown($client,1);
     }
    }
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    # receive string over SSL connection
    my $string = <$client>;
    print "Output = $string\n";
    
  4. or download this
    wget -q --no-check-cert https://192.168.0.1:6666 -O -