SSL_set_shutdown.pod 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. =pod
  2. =head1 NAME
  3. SSL_set_shutdown, SSL_get_shutdown - manipulate shutdown state of an SSL connection
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. void SSL_set_shutdown(SSL *ssl, int mode);
  7. int SSL_get_shutdown(const SSL *ssl);
  8. =head1 DESCRIPTION
  9. SSL_set_shutdown() sets the shutdown state of B<ssl> to B<mode>.
  10. SSL_get_shutdown() returns the shutdown mode of B<ssl>.
  11. =head1 NOTES
  12. The shutdown state of an ssl connection is a bit-mask of:
  13. =over 4
  14. =item Z<>0
  15. No shutdown setting, yet.
  16. =item SSL_SENT_SHUTDOWN
  17. A close_notify shutdown alert was sent to the peer, the connection is being
  18. considered closed and the session is closed and correct.
  19. =item SSL_RECEIVED_SHUTDOWN
  20. A shutdown alert was received form the peer, either a normal close_notify
  21. or a fatal error.
  22. =back
  23. SSL_SENT_SHUTDOWN and SSL_RECEIVED_SHUTDOWN can be set at the same time.
  24. The shutdown state of the connection is used to determine the state of
  25. the ssl session. If the session is still open, when
  26. L<SSL_clear(3)> or L<SSL_free(3)> is called,
  27. it is considered bad and removed according to RFC2246.
  28. The actual condition for a correctly closed session is SSL_SENT_SHUTDOWN
  29. (according to the TLS RFC, it is acceptable to only send the close_notify
  30. alert but to not wait for the peer's answer, when the underlying connection
  31. is closed).
  32. SSL_set_shutdown() can be used to set this state without sending a
  33. close alert to the peer (see L<SSL_shutdown(3)>).
  34. If a close_notify was received, SSL_RECEIVED_SHUTDOWN will be set,
  35. for setting SSL_SENT_SHUTDOWN the application must however still call
  36. L<SSL_shutdown(3)> or SSL_set_shutdown() itself.
  37. =head1 RETURN VALUES
  38. SSL_set_shutdown() does not return diagnostic information.
  39. SSL_get_shutdown() returns the current setting.
  40. =head1 SEE ALSO
  41. L<ssl(7)>, L<SSL_shutdown(3)>,
  42. L<SSL_CTX_set_quiet_shutdown(3)>,
  43. L<SSL_clear(3)>, L<SSL_free(3)>
  44. =head1 COPYRIGHT
  45. Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
  46. Licensed under the Apache License 2.0 (the "License"). You may not use
  47. this file except in compliance with the License. You can obtain a copy
  48. in the file LICENSE in the source distribution or at
  49. L<https://www.openssl.org/source/license.html>.
  50. =cut