From: Lutz Jänicke Date: Thu, 13 Sep 2001 15:05:42 +0000 (+0000) Subject: One more manual page. X-Git-Tag: OpenSSL_0_9_6c~113^2 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=d59c3e5046ae8eb3d0dbc230c85968eb3bb4266d One more manual page. --- diff --git a/doc/ssl/SSL_CTX_ctrl.pod b/doc/ssl/SSL_CTX_ctrl.pod new file mode 100644 index 0000000000..4228225ae8 --- /dev/null +++ b/doc/ssl/SSL_CTX_ctrl.pod @@ -0,0 +1,34 @@ +=pod + +=head1 NAME + +SSL_CTX_ctrl, SSL_CTX_callback_ctrl, SSL_ctrl, SSL_callback_ctrl - internal handling functions for SSL_CTX and SSL objects + +=head1 SYNOPSIS + + #include + + long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, char *parg); + long SSL_CTX_callback_ctrl(SSL_CTX *, int cmd, void (*fp)()); + + long SSL_ctrl(SSL *ssl, int cmd, long larg, char *parg); + long SSL_callback_ctrl(SSL *, int cmd, void (*fp)()); + +=head1 DESCRIPTION + +The SSL_*_ctrl() family of functions is used to manipulate settings of +the SSL_CTX and SSL objects. Depending on the command B the arguments +B, B, or B are evaluated. These functions should never +be called directly. All functionalities needed are made available via +other functions or macros. + +=head1 RETURN VALUES + +The return values of the SSL*_ctrl() functions depend on the command +supplied via the B parameter. + +=head1 SEE ALSO + +L + +=cut diff --git a/doc/ssl/ssl.pod b/doc/ssl/ssl.pod index 89b321edec..1d2bd45392 100644 --- a/doc/ssl/ssl.pod +++ b/doc/ssl/ssl.pod @@ -653,6 +653,7 @@ L, L, L, L, +L, L, L, L,