Guest User

Untitled

a guest
Feb 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <openssl/ssl.h>
  2.  
  3. long SSL_CTX_set_options(SSL_CTX *ctx, long options);
  4. long SSL_set_options(SSL *ssl, long options);
  5.  
  6. long SSL_CTX_clear_options(SSL_CTX *ctx, long options);
  7. long SSL_clear_options(SSL *ssl, long options);
  8.  
  9. long SSL_CTX_get_options(SSL_CTX *ctx);
  10. long SSL_get_options(SSL *ssl);
  11.  
  12. long SSL_get_secure_renegotiation_support(SSL *ssl);
Add Comment
Please, Sign In to add comment