summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/doc/ssleay.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/doc/ssleay.txt')
-rw-r--r--src/lib/libssl/src/doc/ssleay.txt22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/lib/libssl/src/doc/ssleay.txt b/src/lib/libssl/src/doc/ssleay.txt
index 094e28ce48..c6049d5e53 100644
--- a/src/lib/libssl/src/doc/ssleay.txt
+++ b/src/lib/libssl/src/doc/ssleay.txt
@@ -1,6 +1,22 @@
1 1
2Bundle of old SSLeay documentation files [OBSOLETE!] 2Bundle of old SSLeay documentation files [OBSOLETE!]
3 3
4*** WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! ***
5
6OBSOLETE means that nothing in this document should be trusted. This
7document is provided mostly for historical purposes (it wasn't even up
8to date at the time SSLeay 0.8.1 was released) and as inspiration. If
9you copy some snippet of code from this document, please _check_ that
10it really is correct from all points of view. For example, you can
11check with the other documents in this directory tree, or by comparing
12with relevant parts of the include files.
13
14People have done the mistake of trusting what's written here. Please
15don't do that.
16
17*** WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! ***
18
19
4==== readme ======================================================== 20==== readme ========================================================
5 21
6This is the old 0.6.6 docuementation. Most of the cipher stuff is still 22This is the old 0.6.6 docuementation. Most of the cipher stuff is still
@@ -5743,7 +5759,7 @@ strucutre but also the private key and certificate associated with
5743 5759
5744EXAMPLES. 5760EXAMPLES.
5745 5761
5746So lets play at being a wierd SSL server. 5762So lets play at being a weird SSL server.
5747 5763
5748/* setup a context */ 5764/* setup a context */
5749ctx=SSL_CTX_new(); 5765ctx=SSL_CTX_new();
@@ -6710,8 +6726,8 @@ CRYPTO_set_locking_callback(locking_function);
6710before any multithreading is started. 6726before any multithreading is started.
6711id_function does not need to be defined under Windows NT or 95, the 6727id_function does not need to be defined under Windows NT or 95, the
6712correct function will be called if it is not. Under unix, getpid() 6728correct function will be called if it is not. Under unix, getpid()
6713is call if the id_callback is not defined, for solaris this is wrong 6729is call if the id_callback is not defined, for Solaris this is wrong
6714(since threads id's are not pid's) but under IRIX it is correct 6730(since threads id's are not pid's) but under Linux it is correct
6715(threads are just processes sharing the data segement). 6731(threads are just processes sharing the data segement).
6716 6732
6717The locking_callback is used to perform locking by the SSLeay library. 6733The locking_callback is used to perform locking by the SSLeay library.