summaryrefslogtreecommitdiff
path: root/src/lib/libssl/doc/SSL_CTX_sessions.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/doc/SSL_CTX_sessions.3')
-rw-r--r--src/lib/libssl/doc/SSL_CTX_sessions.335
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/libssl/doc/SSL_CTX_sessions.3 b/src/lib/libssl/doc/SSL_CTX_sessions.3
deleted file mode 100644
index 23d9edb6e2..0000000000
--- a/src/lib/libssl/doc/SSL_CTX_sessions.3
+++ /dev/null
@@ -1,35 +0,0 @@
1.\"
2.\" $OpenBSD: SSL_CTX_sessions.3,v 1.3 2015/11/15 22:02:10 jmc Exp $
3.\"
4.Dd $Mdocdate: November 15 2015 $
5.Dt SSL_CTX_SESSIONS 3
6.Os
7.Sh NAME
8.Nm SSL_CTX_sessions
9.Nd access internal session cache
10.Sh SYNOPSIS
11.In openssl/ssl.h
12.Ft struct lhash_st *
13.Fn SSL_CTX_sessions "SSL_CTX *ctx"
14.Sh DESCRIPTION
15.Fn SSL_CTX_sessions
16returns a pointer to the lhash databases containing the internal session cache
17for
18.Fa ctx .
19.Sh NOTES
20The sessions in the internal session cache are kept in an
21lhash-type database
22(see
23.Xr lh_new 3 ) .
24It is possible to directly access this database, e.g., for searching.
25In parallel,
26the sessions form a linked list which is maintained separately from the
27lhash operations,
28so that the database must not be modified directly but by using the
29.Xr SSL_CTX_add_session 3
30family of functions.
31.Sh SEE ALSO
32.Xr lh_new 3 ,
33.Xr ssl 3 ,
34.Xr SSL_CTX_add_session 3 ,
35.Xr SSL_CTX_set_session_cache_mode 3