2
0

SSL_CTX_free.pod 683 B

12345678910111213141516171819202122232425262728293031
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_free - free an allocated SSL_CTX object
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. void SSL_CTX_free(SSL_CTX *ctx);
  7. =head1 DESCRIPTION
  8. SSL_CTX_free() decrements the reference count of B<ctx>, and removes the
  9. SSL_CTX object pointed to by B<ctx> and frees up the allocated memory if the
  10. the reference count has reached 0.
  11. It also calls the free()ing procedures for indirectly affected items, if
  12. applicable: the session cache, the list of ciphers, the list of Client CAs,
  13. the certificates and keys.
  14. =head1 RETURN VALUES
  15. SSL_CTX_free() does not provide diagnostic information.
  16. =head1 SEE ALSO
  17. L<SSL_CTX_new(3)|SSL_CTX_new(3)>, L<ssl(3)|ssl(3)>
  18. =cut