SSL_CTX_ctrl, SSL_CTX_callback_ctrl - Internal handling
functions for SSL_CTX and SSL objects
#include <openssl/ssl.h>
long SSL_CTX_ctrl(
SSL_CTX *ctx,
int cmd,
long larg,
char *parg ); long SSL_CTX_callback_ctrl(
SSL *,
int cmd,
void (*fp)() ); long SSL_ctrl(
SSL_CTX *ctx,
int cmd,
long larg,
char *parg ); long SSL_callback_ctrl(
SSL *,
int cmd,
void (*fp)() );
The SSL_*_ctrl() family of functions is used to manipulate
settings of the SSL_CTX and SSL objects.
Depending on the cmd parameter, the arguments larg, parg,
or fp are evaluated. These functions should never be
called directly. All functionalities needed are made
available via other functions or macros.
The return values of the SSL_CTX_ctrl() functions depend
on the type of command supplied via the cmd parameter.
Functions: ssl(3), SSL_ctrl(3), SSL_callback_ctrl(3)
SSL_CTX_ctrl(3)
[ Back ] |