config root man

Current Path : /usr/local/share/examples/IO-Socket-SSL/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/examples/IO-Socket-SSL/lwp-with-verifycn.pl

use strict;
use warnings;

## !!! make sure that Net::SSL never gets loaded, otherwise it will
## be used instead of IO::Socket::SSL from LWP

use IO::Socket::SSL 'debug0';
use LWP::Simple;

IO::Socket::SSL::set_ctx_defaults( 
	SSL_verifycn_scheme => 'www', 
	SSL_verify_mode => 1,
	SSL_ca_file => 'verisign.pem', # root CA of verisign
);
print get( 'https://signin.ebay.com' );




Man Man