Don't exclude quite so much in a no-sock build
[openssl.git] / doc / man3 / SSL_CTX_has_client_custom_ext.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CTX_has_client_custom_ext - check whether a handler exists for a particular
6 client extension type
7
8 =head1 SYNOPSIS
9
10  #include <openssl/ssl.h>
11
12  int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, unsigned int ext_type);
13
14 =head1 DESCRIPTION
15
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().
18
19 =head1 RETURN VALUES
20
21 Returns 1 if a handler has been set, 0 otherwise.
22
23 =head1 SEE ALSO
24
25 L<ssl(7)>,
26 L<SSL_CTX_add_client_custom_ext(3)>
27
28 =head1 COPYRIGHT
29
30 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
31
32 Licensed under the Apache License 2.0 (the "License").  You may not use
33 this file except in compliance with the License.  You can obtain a copy
34 in the file LICENSE in the source distribution or at
35 L<https://www.openssl.org/source/license.html>.
36
37 =cut