SSL_SESSION_free.pod revision 68651
1=pod
2
3=head1 NAME
4
5SSL_SESSION_free - free an allocated SSL_SESSION structure
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_SESSION_free(SSL_SESSION *session);
12
13=head1 DESCRIPTION
14
15SSL_SESSION_free() decrements the reference count of B<session> and removes
16the B<SSL_SESSION> structure pointed to by B<session> and frees up the allocated
17memory, if the the reference count has reached 0.
18
19=head1 RETURN VALUES
20
21SSL_SESSION_free() does not provide diagnostic information.
22
23L<ssl(3)|ssl(3)>, L<SSL_get_session(3)|SSL_get_session(3)>
24
25=cut
26