#include
void SSL_set_shutdown(SSL *ssl, int mode);
int SSL_get_shutdown(const SSL *ssl);
_S_S_L___g_e_t___s_h_u_t_d_o_w_n_(_) returns the shutdown mode of ssssll.
SSL_SENT_SHUTDOWN and SSL_RECEIVED_SHUTDOWN can be set at the same time.
The shutdown state of the connection is used to determine the state of the ssl session. If the session is still open, when _S_S_L___c_l_e_a_r(3) or _S_S_L___f_r_e_e(3) is called, it is considered bad and removed according to RFC2246. The actual condition for a correctly closed session is SSL_SENT_SHUTDOWN (according to the TLS RFC, it is acceptable to only send the "close notify" alert but to not wait for the peer's answer, when the underlying connection is closed). _S_S_L___s_e_t___s_h_u_t_d_o_w_n_(_) can be used to set this state without sending a close alert to the peer (see _S_S_L___s_h_u_t_d_o_w_n(3)).
If a "close notify" was received, SSL_RECEIVED_SHUTDOWN will be set, for setting SSL_SENT_SHUTDOWN the application must however still call _S_S_L___s_h_u_t_d_o_w_n(3) or _S_S_L___s_e_t___s_h_u_t_d_o_w_n_(_) itself.
_S_S_L___g_e_t___s_h_u_t_d_o_w_n_(_) returns the current setting.