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