summaryrefslogtreecommitdiff
path: root/src/lib/libssl/doc/SSL_CTX_ctrl.3
diff options
context:
space:
mode:
authorbentley <>2014-10-12 09:33:04 +0000
committerbentley <>2014-10-12 09:33:04 +0000
commit82b7f378b6907ab315a6e50322d2a0a8794a0aa9 (patch)
treea5087bf8d016a6041c2b6822fbecfd8f6c5e70b1 /src/lib/libssl/doc/SSL_CTX_ctrl.3
parent0a63f0cf49369e1926567ab62e04e3355cedf0cd (diff)
downloadopenbsd-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.346
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
21The
22.Fn SSL_*_ctrl
23family of functions is used to manipulate settings of
24the
25.Vt SSL_CTX
26and
27.Vt SSL
28objects.
29Depending on the command
30.Fa cmd
31the arguments
32.Fa larg ,
33.Fa parg ,
34or
35.Fa fp
36are evaluated.
37These functions should never be called directly.
38All functionalities needed are made available via other functions or macros.
39.Sh RETURN VALUES
40The return values of the
41.Fn SSL*_ctrl
42functions depend on the command supplied via the
43.Fn cmd
44parameter.
45.Sh SEE ALSO
46.Xr ssl 3