SSL_set_connect_state.pod 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. =pod
  2. =head1 NAME
  3. SSL_set_connect_state, SSL_get_accept_state - prepare SSL object to work in client or server mode
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. void SSL_set_connect_state(SSL *ssl);
  7. void SSL_set_accept_state(SSL *ssl);
  8. =head1 DESCRIPTION
  9. SSL_set_connect_state() sets B<ssl> to work in client mode.
  10. SSL_set_accept_state() sets B<ssl> to work in server mode.
  11. =head1 NOTES
  12. When the SSL_CTX object was created with L<SSL_CTX_new(3)|SSL_CTX_new(3)>,
  13. it was either assigned a dedicated client method, a dedicated server
  14. method, or a generic method, that can be used for both client and
  15. server connections. (The method might have been changed with
  16. L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)> or
  17. SSL_set_ssl_method().)
  18. When beginning a new handshake, the SSL engine must know whether it must
  19. call the connect (client) or accept (server) routines. Even though it may
  20. be clear from the method chosen, whether client or server mode was
  21. requested, the handshake routines must be explicitly set.
  22. When using the L<SSL_connect(3)|SSL_connect(3)> or
  23. L<SSL_accept(3)|SSL_accept(3)> routines, the correct handshake
  24. routines are automatically set. When performing a transparent negotiation
  25. using L<SSL_write(3)|SSL_write(3)> or L<SSL_read(3)|SSL_read(3)>, the
  26. handshake routines must be explicitly set in advance using either
  27. SSL_set_connect_state() or SSL_set_accept_state().
  28. =head1 RETURN VALUES
  29. SSL_set_connect_state() and SSL_set_accept_state() do not return diagnostic
  30. information.
  31. =head1 SEE ALSO
  32. L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>, L<SSL_CTX_new(3)|SSL_CTX_new(3)>,
  33. L<SSL_connect(3)|SSL_connect(3)>, L<SSL_accept(3)|SSL_accept(3)>,
  34. L<SSL_write(3)|SSL_write(3)>, L<SSL_read(3)|SSL_read(3)>,
  35. L<SSL_do_handshake(3)|SSL_do_handshake(3)>,
  36. L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)>
  37. =cut