ssl_ctx_free.pod

来自「一个用于点对点传输加密的工具包源码」· POD 代码 · 共 30 行

POD
30
字号
=pod=head1 NAMESSL_CTX_free - free an allocated SSL_CTX object=head1 SYNOPSIS #include <openssl/ssl.h> void SSL_CTX_free(SSL_CTX *ctx);=head1 DESCRIPTIONSSL_CTX_free() decrements the reference count of B<ctx>, and removes theSSL_CTX object pointed to by B<ctx> and frees up the allocated memory if thethe reference count has reached 0.It also calls the free()ing procedures for indirectly affected items, ifapplicable: the session cacahe, the list of ciphers, the list of Client CAs,the certificates and keys.=head1 RETURN VALUESSSL_CTX_free() does not provide diagnostic information.L<SSL_CTX_new(3)|SSL_CTX_new(3)>, L<ssl(3)|ssl(3)>=cut

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?