@@ -1972,8 +1972,9 @@ Examples:
19721972 #BEWARE: THIS IS WRONG - MEMORY LEAKS! (you cannot free @cachain items)
19731973 my ($privkey, $cert) = Net::SSLeay::P_PKCS12_load_file($filename, 1, $password);
19741974
1975- B<NOTE> With some combinations of Windows, perl, compiler and compiler options, you
1976- may see a runtime error "no OPENSSL_Applink", when calling
1975+ B<NOTE> Net::SSLeay 1.92_01 and earlier: With some combinations of
1976+ Windows, perl, compiler and compiler options, you may see a runtime
1977+ error "no OPENSSL_Applink", when calling
19771978Net::SSLeay::P_PKCS12_load_file. See README.Win32 for more details.
19781979
19791980=back
@@ -2226,6 +2227,11 @@ You have to use necessary BIO functions like this:
22262227
22272228Prints session details (e.g. protocol version, cipher, session-id ...) to file handle.
22282229
2230+ B<NOTE> With some combinations of Windows, perl, compiler and compiler
2231+ options, you may see a runtime error "no OPENSSL_Applink", when
2232+ calling Net::SSLeay::SESSION_print_fp. See README.Win32 for more
2233+ details.
2234+
22292235 my $rv = Net::SSLeay::SESSION_print_fp($fp, $ses);
22302236 # $fp - perl file handle
22312237 # $ses - value corresponding to openssl's SSL_SESSION structure
@@ -2239,6 +2245,12 @@ Example:
22392245 open my $fh, ">", "output.txt";
22402246 Net::SSLeay::SESSION_print_fp($fh,$ses);
22412247
2248+ Similar functionality without Net::SSLeay::SESSION_print_fp
2249+
2250+ my $ses = Net::SSLeay::get_session($ssl);
2251+ my $bio = Net::SSLeay::BIO_new_file('output.txt', 'w');
2252+ Net::SSLeay::SESSION_print($bio, $ses);
2253+
22422254=item * SESSION_set_time
22432255
22442256Replaces the creation time of the session s with the chosen value $t (seconds since 1.1.1970).
@@ -3391,6 +3403,11 @@ Adds the certificate and private key from PKCS12 file $p12filename to $ctx.
33913403 #
33923404 # returns: 1 on success, 0 on failure
33933405
3406+ B<NOTE> Net::SSLeay 1.92_01 and earlier: With some combinations of
3407+ Windows, perl, compiler and compiler options, you may see a runtime
3408+ error "no OPENSSL_Applink", when calling
3409+ Net::SSLeay::CTX_use_PKCS12_file. See README.Win32 for more details.
3410+
33943411=item * CTX_use_PrivateKey
33953412
33963413Adds the private key $pkey to $ctx.
0 commit comments