 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Bottom of page |
|
SSL_CTX_ctrl(3)
NAME
SSL_CTX_ctrl, SSL_CTX_callback_ctrl - Internal handling functions for
SSL_CTX and SSL objects
SYNOPSIS
#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)() );
DESCRIPTION
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.
RETURN VALUES
The return values of the SSL_CTX_ctrl() functions depend on the type of
command supplied via the cmd parameter.
SEE ALSO
Functions: ssl(3), SSL_ctrl(3), SSL_callback_ctrl(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Top of page |
|