SSL_CTX_use_serverinfo.pod 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_use_serverinfo, SSL_CTX_use_serverinfo_file - use serverinfo extension
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo,
  7. size_t serverinfo_length);
  8. int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file);
  9. =head1 DESCRIPTION
  10. These functions load "serverinfo" TLS ServerHello Extensions into the SSL_CTX.
  11. A "serverinfo" extension is returned in response to an empty ClientHello
  12. Extension.
  13. SSL_CTX_use_serverinfo() loads one or more serverinfo extensions from
  14. a byte array into B<ctx>. The extensions must be concatenated into a
  15. sequence of bytes. Each extension must consist of a 2-byte Extension Type,
  16. a 2-byte length, and then length bytes of extension_data.
  17. SSL_CTX_use_serverinfo_file() loads one or more serverinfo extensions from
  18. B<file> into B<ctx>. The extensions must be in PEM format. Each extension
  19. must consist of a 2-byte Extension Type, a 2-byte length, and then length
  20. bytes of extension_data. Each PEM extension name must begin with the phrase
  21. "BEGIN SERVERINFO FOR ".
  22. =head1 NOTES
  23. =head1 RETURN VALUES
  24. On success, the functions return 1.
  25. On failure, the functions return 0. Check out the error stack to find out
  26. the reason.
  27. =head1 SEE ALSO
  28. =head1 HISTORY
  29. =cut