summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2015-11-15 22:02:10 +0000
committerjmc <>2015-11-15 22:02:10 +0000
commit19f68c0924f4a248fb1ceb7a6cfd0e0c342db83d (patch)
treed4cd2e003e925e9be66377c80c6ec301c23020ff
parent5c1fdd8704ef9d12658edf27391ce77b20049406 (diff)
downloadopenbsd-19f68c0924f4a248fb1ceb7a6cfd0e0c342db83d.tar.gz
openbsd-19f68c0924f4a248fb1ceb7a6cfd0e0c342db83d.tar.bz2
openbsd-19f68c0924f4a248fb1ceb7a6cfd0e0c342db83d.zip
fix references to lhash(3);
-rw-r--r--src/lib/libssl/doc/SSL_CTX_sessions.315
-rw-r--r--src/lib/libssl/src/doc/ssl/SSL_CTX_sessions.315
2 files changed, 16 insertions, 14 deletions
diff --git a/src/lib/libssl/doc/SSL_CTX_sessions.3 b/src/lib/libssl/doc/SSL_CTX_sessions.3
index 0d83711205..23d9edb6e2 100644
--- a/src/lib/libssl/doc/SSL_CTX_sessions.3
+++ b/src/lib/libssl/doc/SSL_CTX_sessions.3
@@ -1,7 +1,7 @@
1.\" 1.\"
2.\" $OpenBSD: SSL_CTX_sessions.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ 2.\" $OpenBSD: SSL_CTX_sessions.3,v 1.3 2015/11/15 22:02:10 jmc Exp $
3.\" 3.\"
4.Dd $Mdocdate: December 2 2014 $ 4.Dd $Mdocdate: November 15 2015 $
5.Dt SSL_CTX_SESSIONS 3 5.Dt SSL_CTX_SESSIONS 3
6.Os 6.Os
7.Sh NAME 7.Sh NAME
@@ -18,17 +18,18 @@ for
18.Fa ctx . 18.Fa ctx .
19.Sh NOTES 19.Sh NOTES
20The sessions in the internal session cache are kept in an 20The sessions in the internal session cache are kept in an
21.Xr lhash 3 21lhash-type database
22type database. 22(see
23.Xr lh_new 3 ) .
23It is possible to directly access this database, e.g., for searching. 24It is possible to directly access this database, e.g., for searching.
24In parallel, 25In parallel,
25the sessions form a linked list which is maintained separately from the 26the sessions form a linked list which is maintained separately from the
26.Xr lhash 3 27lhash operations,
27operations, so that the database must not be modified directly but by using the 28so that the database must not be modified directly but by using the
28.Xr SSL_CTX_add_session 3 29.Xr SSL_CTX_add_session 3
29family of functions. 30family of functions.
30.Sh SEE ALSO 31.Sh SEE ALSO
31.Xr lhash 3 , 32.Xr lh_new 3 ,
32.Xr ssl 3 , 33.Xr ssl 3 ,
33.Xr SSL_CTX_add_session 3 , 34.Xr SSL_CTX_add_session 3 ,
34.Xr SSL_CTX_set_session_cache_mode 3 35.Xr SSL_CTX_set_session_cache_mode 3
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3 b/src/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
index 0d83711205..23d9edb6e2 100644
--- a/src/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
+++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_sessions.3
@@ -1,7 +1,7 @@
1.\" 1.\"
2.\" $OpenBSD: SSL_CTX_sessions.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ 2.\" $OpenBSD: SSL_CTX_sessions.3,v 1.3 2015/11/15 22:02:10 jmc Exp $
3.\" 3.\"
4.Dd $Mdocdate: December 2 2014 $ 4.Dd $Mdocdate: November 15 2015 $
5.Dt SSL_CTX_SESSIONS 3 5.Dt SSL_CTX_SESSIONS 3
6.Os 6.Os
7.Sh NAME 7.Sh NAME
@@ -18,17 +18,18 @@ for
18.Fa ctx . 18.Fa ctx .
19.Sh NOTES 19.Sh NOTES
20The sessions in the internal session cache are kept in an 20The sessions in the internal session cache are kept in an
21.Xr lhash 3 21lhash-type database
22type database. 22(see
23.Xr lh_new 3 ) .
23It is possible to directly access this database, e.g., for searching. 24It is possible to directly access this database, e.g., for searching.
24In parallel, 25In parallel,
25the sessions form a linked list which is maintained separately from the 26the sessions form a linked list which is maintained separately from the
26.Xr lhash 3 27lhash operations,
27operations, so that the database must not be modified directly but by using the 28so that the database must not be modified directly but by using the
28.Xr SSL_CTX_add_session 3 29.Xr SSL_CTX_add_session 3
29family of functions. 30family of functions.
30.Sh SEE ALSO 31.Sh SEE ALSO
31.Xr lhash 3 , 32.Xr lh_new 3 ,
32.Xr ssl 3 , 33.Xr ssl 3 ,
33.Xr SSL_CTX_add_session 3 , 34.Xr SSL_CTX_add_session 3 ,
34.Xr SSL_CTX_set_session_cache_mode 3 35.Xr SSL_CTX_set_session_cache_mode 3