SSL_CONF_CTX_new.pod 962 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. =pod
  2. =head1 NAME
  3. SSL_CONF_CTX_new, SSL_CONF_CTX_free - SSL configuration allocation functions
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. SSL_CONF_CTX *SSL_CONF_CTX_new(void);
  7. void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx);
  8. =head1 DESCRIPTION
  9. The function SSL_CONF_CTX_new() allocates and initialises an B<SSL_CONF_CTX>
  10. structure for use with the SSL_CONF functions.
  11. The function SSL_CONF_CTX_free() frees up the context B<cctx>.
  12. =head1 RETURN VALUES
  13. SSL_CONF_CTX_new() returns either the newly allocated B<SSL_CONF_CTX> structure
  14. or B<NULL> if an error occurs.
  15. SSL_CONF_CTX_free() does not return a value.
  16. =head1 SEE ALSO
  17. L<SSL_CONF_CTX_set_flags(3)|SSL_CONF_CTX_set_flags(3)>,
  18. L<SSL_CONF_CTX_set_ssl_ctx(3)|SSL_CONF_CTX_set_ssl_ctx(3)>,
  19. L<SSL_CONF_CTX_set1_prefix(3)|SSL_CONF_CTX_set1_prefix(3)>,
  20. L<SSL_CONF_cmd(3)|SSL_CONF_cmd(3)>,
  21. L<SSL_CONF_cmd_argv(3)|SSL_CONF_cmd_argv(3)>
  22. =head1 HISTORY
  23. These functions were first added to OpenSSL 1.0.2
  24. =cut