|
SSL_set_quiet_shutdown(3)
Contents
|
SSL_set_quiet_shutdown - Set a value to the quiet-shutdown
flag in the ssl data structure
#include <openssl/ssl.h>
void SSL_set_quiet_shutdown(
SSL *ssl,
int mode );
The SSL_set_quiet_shutdown() function sets a mode of quiet
shutdown to the ssl structure. To turn on the quiet shutdown,
mode == 1 needs to be passed. The mode == 0 turns
off the quiet shutdown flag of the ssl structure. When
SSL_new() creates an ssl structure, the value of the
quiet-shutdown flag inherits from the quiet-shutdown flag
in the SSL_CTX data structure.
Functions: SSL_get_quiet_shutdown(3),
SSL_CTX_get_quiet_shutdown(3), SSL_CTX_set_quiet_shutdown(3)
SSL_set_quiet_shutdown(3)
[ Back ] |