summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2015-11-15 22:02:11 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2015-11-15 22:02:11 +0000
commit1dda33256407e61252c58110bd3c3112dc2d64b9 (patch)
treea5bc57f8a286de6b4efe00c8c802f3eec397ac6c /lib
parent80988707ea521812116a4cf29a23cc4ac4e63985 (diff)
fix references to lhash(3);
Diffstat (limited to 'lib')
-rw-r--r--lib/libssl/src/doc/ssl/SSL_CTX_sessions.315
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3 b/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
index 0d83711205d..23d9edb6e25 100644
--- a/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
+++ b/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
@@ -1,7 +1,7 @@
.\"
-.\" $OpenBSD: SSL_CTX_sessions.3,v 1.2 2014/12/02 14:11:01 jmc Exp $
+.\" $OpenBSD: SSL_CTX_sessions.3,v 1.3 2015/11/15 22:02:10 jmc Exp $
.\"
-.Dd $Mdocdate: December 2 2014 $
+.Dd $Mdocdate: November 15 2015 $
.Dt SSL_CTX_SESSIONS 3
.Os
.Sh NAME
@@ -18,17 +18,18 @@ for
.Fa ctx .
.Sh NOTES
The sessions in the internal session cache are kept in an
-.Xr lhash 3
-type database.
+lhash-type database
+(see
+.Xr lh_new 3 ) .
It is possible to directly access this database, e.g., for searching.
In parallel,
the sessions form a linked list which is maintained separately from the
-.Xr lhash 3
-operations, so that the database must not be modified directly but by using the
+lhash operations,
+so that the database must not be modified directly but by using the
.Xr SSL_CTX_add_session 3
family of functions.
.Sh SEE ALSO
-.Xr lhash 3 ,
+.Xr lh_new 3 ,
.Xr ssl 3 ,
.Xr SSL_CTX_add_session 3 ,
.Xr SSL_CTX_set_session_cache_mode 3