Home
last modified time | relevance | path

Searched refs:SSL_SENT_SHUTDOWN (Results 1 – 14 of 14) sorted by relevance

/onnv-gate/usr/src/common/openssl/doc/ssl/
H A DSSL_set_shutdown.pod31 =item SSL_SENT_SHUTDOWN
43 SSL_SENT_SHUTDOWN and SSL_RECEIVED_SHUTDOWN can be set at the same time.
49 The actual condition for a correctly closed session is SSL_SENT_SHUTDOWN
57 for setting SSL_SENT_SHUTDOWN the application must however still call
H A DSSL_CTX_set_quiet_shutdown.pod40 will set the internal flags to SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN.
43 SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN.)
H A DSSL_shutdown.pod21 Whether the operation succeeds or not, the SSL_SENT_SHUTDOWN flag is set and
42 SSL_SENT_SHUTDOWN flag (so that the session is considered good and will
54 SSL_shutdown() will send the "close notify" alert, set the SSL_SENT_SHUTDOWN
H A DSSL_free.pod33 SSL_SENT_SHUTDOWN state, the session will also be removed
H A DSSL_clear.pod26 set the SSL_SENT_SHUTDOWN state.
/onnv-gate/usr/src/common/openssl/apps/
H A Ds_time.c526 SSL_set_shutdown(scon,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in MAIN()
580 SSL_set_shutdown(scon,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in MAIN()
619 SSL_set_shutdown(scon,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in MAIN()
H A Ds_server.c1455 SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in sv_body()
1944 SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in www_body()
/onnv-gate/usr/src/common/openssl/ssl/
H A Ds3_lib.c2078 s->shutdown=(SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in ssl3_shutdown()
2082 if (!(s->shutdown & SSL_SENT_SHUTDOWN)) in ssl3_shutdown()
2084 s->shutdown|=SSL_SENT_SHUTDOWN; in ssl3_shutdown()
2104 if ((s->shutdown == (SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN)) && in ssl3_shutdown()
H A Ds2_lib.c469 s->shutdown=(SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in ssl2_shutdown()
H A Dssl_sess.c703 !(s->shutdown & SSL_SENT_SHUTDOWN) && in ssl_clear_bad_session()
H A Ds3_pkt.c1074 if (s->shutdown & SSL_SENT_SHUTDOWN) /* but we have not received a shutdown */ in ssl3_read_bytes()
H A Dd1_pkt.c971 if (s->shutdown & SSL_SENT_SHUTDOWN) /* but we have not received a shutdown */ in dtls1_read_bytes()
H A Dssl.h321 #define SSL_SENT_SHUTDOWN 1 macro
H A Dssl_lib.c897 if (s->shutdown & SSL_SENT_SHUTDOWN) in SSL_write()