in reply to POSTing data via SSL
From the documentation:my $socket = IO::Socket::SSL->new( PeerAddr => "$remote_host:$remote_port", PeerPort => $remote_port, Proto => "tcp", SSL_verify_mode=>0x00 ) or die "unable to create socket: $!\n";;
SSL_verify_mode
Type of verification process which is to be performed upon a peer certificate. This can be a combination of 0x00 (don't verify), 0x01 (verify peer), 0x02 (fail verification if there's no peer certificate), and 0x04 (verify client once). Default: verify peer.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: POSTing data via SSL
by no_slogan (Deacon) on Dec 06, 2001 at 05:08 UTC |