]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/ssl/SSL_SESSION_free.pod
Add a number of documentation files, mostly for SSL routines, but also
[thirdparty/openssl.git] / doc / ssl / SSL_SESSION_free.pod
CommitLineData
cc99526d
RL
1=pod
2
3=head1 NAME
4
5SSL_SESSION_free - Free up 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 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