ssl_free.pod

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

POD
34
字号
=pod=head1 NAMESSL_free - free an allocated SSL structure=head1 SYNOPSIS #include <openssl/ssl.h> void SSL_free(SSL *ssl);=head1 DESCRIPTIONSSL_free() decrements the reference count of B<ssl>, and removes the SSLstructure pointed to by B<ssl> 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 buffering BIO, the read and write BIOs,cipher lists specially created for this B<ssl>, the B<SSL_SESSION>.Do not explicitly free these indirectly freed up items before or aftercalling SSL_free(), as trying to free things twice may lead to programfailure.=head1 RETURN VALUESSSL_free() does not provide diagnostic information.L<SSL_new(3)|SSL_new(3)>, L<SSL_clear(3)|SSL_clear(3)>,L<ssl(3)|ssl(3)>=cut

⌨️ 快捷键说明

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