SSL_CTX_has_client_custom_ext.pod 892 B

12345678910111213141516171819202122232425262728293031323334353637
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_has_client_custom_ext - check whether a handler exists for a particular
  4. client extension type
  5. =head1 SYNOPSIS
  6. #include <openssl/ssl.h>
  7. int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, unsigned int ext_type);
  8. =head1 DESCRIPTION
  9. SSL_CTX_has_client_custom_ext() checks whether a handler has been set for a
  10. client extension of type B<ext_type> using SSL_CTX_add_client_custom_ext().
  11. =head1 RETURN VALUES
  12. Returns 1 if a handler has been set, 0 otherwise.
  13. =head1 SEE ALSO
  14. L<ssl(7)>,
  15. L<SSL_CTX_add_client_custom_ext(3)>
  16. =head1 COPYRIGHT
  17. Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
  18. Licensed under the Apache License 2.0 (the "License"). You may not use
  19. this file except in compliance with the License. You can obtain a copy
  20. in the file LICENSE in the source distribution or at
  21. L<https://www.openssl.org/source/license.html>.
  22. =cut