typo.
[openssl.git] / doc / ssl / SSL_CTX_add_session.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CTX_add_session, SSL_add_session, SSL_CTX_remove_session, SSL_remove_session - manipulate session cache
6
7 =head1 SYNOPSIS
8
9  #include <openssl/ssl.h>
10
11  int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c);
12  int SSL_add_session(SSL_CTX *ctx, SSL_SESSION *c);
13
14  int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c);
15  int SSL_remove_session(SSL_CTX *ctx, SSL_SESSION *c);
16
17 =head1 DESCRIPTION
18
19 SSL_CTX_add_session() adds the session B<c> to the context B<ctx>. The
20 reference count for session B<c> is incremented by 1. If a session with
21 the same session id already exists, the old session is removed by calling
22 L<SSL_SESSION_free(3)|SSL_SESSION_free(3)>.
23
24 SSL_CTX_remove_session() removes the session B<c> from the context B<ctx>.
25 L<SSL_SESSION_free(3)|SSL_SESSION_free(3)> is called once for B<c>.
26
27 SSL_add_session() and SSL_remove_session() are synonyms for their
28 SSL_CTX_*() counterparts.
29
30 =head1 NOTES
31
32 When adding a new session to the internal session cache, it is examined
33 whether a session with the same session id already exists. In this case
34 it is assumed that both sessions are identical. If the same session is
35 stored in a different SSL_SESSION object, The old session is
36 removed and replaced by the new session. If the session is actually
37 identical (the SSL_SESSION object is identical), SSL_CTX_add_session()
38 is a no-op, and the return value is 0.
39
40
41 =head1 RETURN VALUES
42
43 The following values are returned by all functions:
44
45 =over 4
46
47 =item 0
48
49  The operation failed. In case of the add operation, it was tried to add
50  the same (identical) session twice. In case of the remove operation, the
51  session was not found in the cache.
52
53 =item 1
54  
55  The operation succeeded.
56
57 =back
58
59 =head1 SEE ALSO
60
61 L<ssl(3)|ssl(3)>,
62 L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>,
63 L<SSL_SESSION_free(3)|SSL_SESSION_free(3)>
64
65 =cut