diff options
Diffstat (limited to 'src/lib/libssl/man/SSL_CTX_ctrl.3')
| -rw-r--r-- | src/lib/libssl/man/SSL_CTX_ctrl.3 | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_ctrl.3 b/src/lib/libssl/man/SSL_CTX_ctrl.3 new file mode 100644 index 0000000000..47cf609491 --- /dev/null +++ b/src/lib/libssl/man/SSL_CTX_ctrl.3 | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | .\" | ||
| 2 | .\" $OpenBSD: SSL_CTX_ctrl.3,v 1.1 2016/11/05 15:32:19 schwarze Exp $ | ||
| 3 | .\" | ||
| 4 | .Dd $Mdocdate: November 5 2016 $ | ||
| 5 | .Dt SSL_CTX_CTRL 3 | ||
| 6 | .Os | ||
| 7 | .Sh NAME | ||
| 8 | .Nm SSL_CTX_ctrl , | ||
| 9 | .Nm SSL_CTX_callback_ctrl , | ||
| 10 | .Nm SSL_ctrl , | ||
| 11 | .Nm SSL_callback_ctrl | ||
| 12 | .Nd internal handling functions for SSL_CTX and SSL objects | ||
| 13 | .Sh SYNOPSIS | ||
| 14 | .In openssl/ssl.h | ||
| 15 | .Ft long | ||
| 16 | .Fn SSL_CTX_ctrl "SSL_CTX *ctx" "int cmd" "long larg" "void *parg" | ||
| 17 | .Ft long | ||
| 18 | .Fn SSL_CTX_callback_ctrl "SSL_CTX *" "int cmd" "void (*fp)()" | ||
| 19 | .Ft long | ||
| 20 | .Fn SSL_ctrl "SSL *ssl" "int cmd" "long larg" "void *parg" | ||
| 21 | .Ft long | ||
| 22 | .Fn SSL_callback_ctrl "SSL *" "int cmd" "void (*fp)()" | ||
| 23 | .Sh DESCRIPTION | ||
| 24 | The | ||
| 25 | .Fn SSL_*_ctrl | ||
| 26 | family of functions is used to manipulate settings of | ||
| 27 | the | ||
| 28 | .Vt SSL_CTX | ||
| 29 | and | ||
| 30 | .Vt SSL | ||
| 31 | objects. | ||
| 32 | Depending on the command | ||
| 33 | .Fa cmd | ||
| 34 | the arguments | ||
| 35 | .Fa larg , | ||
| 36 | .Fa parg , | ||
| 37 | or | ||
| 38 | .Fa fp | ||
| 39 | are evaluated. | ||
| 40 | These functions should never be called directly. | ||
| 41 | All functionalities needed are made available via other functions or macros. | ||
| 42 | .Sh RETURN VALUES | ||
| 43 | The return values of the | ||
| 44 | .Fn SSL*_ctrl | ||
| 45 | functions depend on the command supplied via the | ||
| 46 | .Fn cmd | ||
| 47 | parameter. | ||
| 48 | .Sh SEE ALSO | ||
| 49 | .Xr ssl 3 | ||
