SSL_CTX_set_ex_data(3) | OpenSSL | SSL_CTX_set_ex_data(3) |
#include <openssl/ssl.h> void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx); int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg); void *SSL_get_ex_data(const SSL *s, int idx); int SSL_set_ex_data(SSL *s, int idx, void *arg);
For more detailed information see CRYPTO_get_ex_data(3) and CRYPTO_set_ex_data(3) which implement these functions and CRYPTO_get_ex_new_index(3) for generating a unique index.
Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>.
2018-09-23 | 1.1.1c |