📄 ssl_free.pod
字号:
=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.=head1 NOTESSSL_free() 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.The ssl session has reference counts from two users: the SSL object, forwhich the reference count is removed by SSL_free() and the internalsession cache. If the session is considered bad, becauseL<SSL_shutdown(3)|SSL_shutdown(3)> was not called for the connectionand L<SSL_set_shutdown(3)|SSL_set_shutdown(3)> was not used to set theSSL_SENT_SHUTDOWN state, the session will also be removedfrom the session cache as required by RFC2246.=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_shutdown(3)|SSL_shutdown(3)>, L<SSL_set_shutdown(3)|SSL_set_shutdown(3)>,L<ssl(3)|ssl(3)>=cut
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -