1SSL_CTX_HAS_CLIENT_CUSTOM_EXT(3) OpenSSL SSL_CTX_HAS_CLIENT_CUSTOM_EXT(3)
2
3
4
6 SSL_CTX_has_client_custom_ext - check whether a handler exists for a
7 particular client extension type
8
10 #include <openssl/ssl.h>
11
12 int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, unsigned int ext_type);
13
15 SSL_CTX_has_client_custom_ext() checks whether a handler has been set
16 for a client extension of type ext_type using
17 SSL_CTX_add_client_custom_ext().
18
20 Returns 1 if a handler has been set, 0 otherwise.
21
23 ssl(7), SSL_CTX_add_client_custom_ext(3)
24
26 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
27
28 Licensed under the OpenSSL license (the "License"). You may not use
29 this file except in compliance with the License. You can obtain a copy
30 in the file LICENSE in the source distribution or at
31 <https://www.openssl.org/source/license.html>.
32
33
34
351.1.1q 2022-07-21 SSL_CTX_HAS_CLIENT_CUSTOM_EXT(3)