diff options
author | bentley <> | 2014-10-12 09:33:04 +0000 |
---|---|---|
committer | bentley <> | 2014-10-12 09:33:04 +0000 |
commit | 82b7f378b6907ab315a6e50322d2a0a8794a0aa9 (patch) | |
tree | a5087bf8d016a6041c2b6822fbecfd8f6c5e70b1 /src/lib/libssl/doc/SSL_CTX_ctrl.3 | |
parent | 0a63f0cf49369e1926567ab62e04e3355cedf0cd (diff) | |
download | openbsd-82b7f378b6907ab315a6e50322d2a0a8794a0aa9.tar.gz openbsd-82b7f378b6907ab315a6e50322d2a0a8794a0aa9.tar.bz2 openbsd-82b7f378b6907ab315a6e50322d2a0a8794a0aa9.zip |
Convert libssl manpages from pod to mdoc(7).
libcrypto has not been started yet.
ok schwarze@ miod@
Diffstat (limited to 'src/lib/libssl/doc/SSL_CTX_ctrl.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_CTX_ctrl.3 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/lib/libssl/doc/SSL_CTX_ctrl.3 b/src/lib/libssl/doc/SSL_CTX_ctrl.3 new file mode 100644 index 0000000000..d0a4ffd554 --- /dev/null +++ b/src/lib/libssl/doc/SSL_CTX_ctrl.3 | |||
@@ -0,0 +1,46 @@ | |||
1 | .Dd $Mdocdate: October 12 2014 $ | ||
2 | .Dt SSL_CTX_CTRL 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm SSL_CTX_ctrl , | ||
6 | .Nm SSL_CTX_callback_ctrl , | ||
7 | .Nm SSL_ctrl , | ||
8 | .Nm SSL_callback_ctrl | ||
9 | .Nd internal handling functions for SSL_CTX and SSL objects | ||
10 | .Sh SYNOPSIS | ||
11 | .In openssl/ssl.h | ||
12 | .Ft long | ||
13 | .Fn SSL_CTX_ctrl "SSL_CTX *ctx" "int cmd" "long larg" "void *parg" | ||
14 | .Ft long | ||
15 | .Fn SSL_CTX_callback_ctrl "SSL_CTX *" "int cmd" "void (*fp)()" | ||
16 | .Ft long | ||
17 | .Fn SSL_ctrl "SSL *ssl" "int cmd" "long larg" "void *parg" | ||
18 | .Ft long | ||
19 | .Fn SSL_callback_ctrl "SSL *" "int cmd" "void (*fp)()" | ||
20 | .Sh DESCRIPTION | ||
21 | The | ||
22 | .Fn SSL_*_ctrl | ||
23 | family of functions is used to manipulate settings of | ||
24 | the | ||
25 | .Vt SSL_CTX | ||
26 | and | ||
27 | .Vt SSL | ||
28 | objects. | ||
29 | Depending on the command | ||
30 | .Fa cmd | ||
31 | the arguments | ||
32 | .Fa larg , | ||
33 | .Fa parg , | ||
34 | or | ||
35 | .Fa fp | ||
36 | are evaluated. | ||
37 | These functions should never be called directly. | ||
38 | All functionalities needed are made available via other functions or macros. | ||
39 | .Sh RETURN VALUES | ||
40 | The return values of the | ||
41 | .Fn SSL*_ctrl | ||
42 | functions depend on the command supplied via the | ||
43 | .Fn cmd | ||
44 | parameter. | ||
45 | .Sh SEE ALSO | ||
46 | .Xr ssl 3 | ||