1SSL_CONF_CTX_new(3) OpenSSL SSL_CONF_CTX_new(3)
2
3
4
6 SSL_CONF_CTX_new, SSL_CONF_CTX_free - SSL configuration allocation
7 functions
8
10 #include <openssl/ssl.h>
11
12 SSL_CONF_CTX *SSL_CONF_CTX_new(void);
13 void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx);
14
16 The function SSL_CONF_CTX_new() allocates and initialises an
17 SSL_CONF_CTX structure for use with the SSL_CONF functions.
18
19 The function SSL_CONF_CTX_free() frees up the context cctx.
20
22 SSL_CONF_CTX_new() returns either the newly allocated SSL_CONF_CTX
23 structure or NULL if an error occurs.
24
25 SSL_CONF_CTX_free() does not return a value.
26
28 SSL_CONF_CTX_set_flags(3), SSL_CONF_CTX_set_ssl_ctx(3),
29 SSL_CONF_CTX_set1_prefix(3), SSL_CONF_cmd(3), SSL_CONF_cmd_argv(3)
30
32 These functions were first added to OpenSSL 1.0.2
33
34
35
361.0.2o 2018-03-27 SSL_CONF_CTX_new(3)