summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2015-11-15 22:02:10 +0000
committerjmc <>2015-11-15 22:02:10 +0000
commit5ec33509726f3770a1a7bb1a068860c9e091dc75 (patch)
treed4cd2e003e925e9be66377c80c6ec301c23020ff
parente0c418d31d1c44cda609bf57ca974c612d5581a0 (diff)
downloadopenbsd-5ec33509726f3770a1a7bb1a068860c9e091dc75.tar.gz
openbsd-5ec33509726f3770a1a7bb1a068860c9e091dc75.tar.bz2
openbsd-5ec33509726f3770a1a7bb1a068860c9e091dc75.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