5 SSL_CTX_has_client_custom_ext - check whether a handler exists for a particular
10 #include <openssl/ssl.h>
12 int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, unsigned int ext_type);
16 SSL_CTX_has_client_custom_ext() checks whether a handler has been set for a
17 client extension of type B<ext_type> using SSL_CTX_add_client_custom_ext().
21 Returns 1 if a handler has been set, 0 otherwise.
26 L<SSL_CTX_add_client_custom_ext(3)>