/openssl-master/doc/man3/ |
A D | SSL_CTX_set_quiet_shutdown.pod | 5 …_get_quiet_shutdown, SSL_set_quiet_shutdown, SSL_get_quiet_shutdown - manipulate shutdown behaviour 19 SSL_CTX_set_quiet_shutdown() sets the "quiet shutdown" flag for B<ctx> to be 23 SSL_CTX_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ctx>. 25 SSL_set_quiet_shutdown() sets the "quiet shutdown" flag for B<ssl> to be 31 SSL_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ssl>. 37 for a clean shutdown. 39 When setting the "quiet shutdown" flag to 1, L<SSL_shutdown(3)> 44 The session is thus considered to be shutdown, but no close_notify alert 47 The default is normal shutdown behaviour as described by the TLS standard.
|
A D | SSL_set_shutdown.pod | 5 SSL_set_shutdown, SSL_get_shutdown - manipulate shutdown state of an SSL connection 17 SSL_set_shutdown() sets the shutdown state of B<ssl> to B<mode>. 19 SSL_get_shutdown() returns the shutdown mode of B<ssl>. 23 The shutdown state of an ssl connection is a bit-mask of: 29 No shutdown setting, yet. 33 A close_notify shutdown alert was sent to the peer, the connection is being 38 A shutdown alert was received form the peer, either a normal close_notify 45 The shutdown state of the connection is used to determine the state of
|
A D | SSL_shutdown.pod | 16 close_notify shutdown alert to the peer. 18 SSL_shutdown() tries to send the close_notify shutdown alert to the peer. 27 The shutdown procedure consists of two steps: sending of the close_notify 28 shutdown alert, and reception of the peer's close_notify shutdown alert. 31 It is acceptable for an application to only send its shutdown alert and 43 do a complete shutdown procedure (bidirectional close_notify alerts). 46 complete shutdown procedure must be performed, so that the peers stay 73 SSL_shutdown() can be modified to only set the connection to "shutdown" 76 When "quiet shutdown" is enabled, SSL_shutdown() will always succeed 138 Call SSL_read() to do a bidirectional shutdown. [all …]
|
A D | BIO_get_data.pod | 36 this BIO's shutdown (i.e. BIO_CLOSE) flag. If set then the underlying resource 46 BIO_get_shutdown() returns the stat of the BIO's shutdown (i.e. BIO_CLOSE) flag.
|
A D | SSL_do_handshake.pod | 59 at the protocol level or a connection failure occurred. The shutdown was
|
A D | SSL_accept.pod | 58 at the protocol level or a connection failure occurred. The shutdown was
|
/openssl-master/crypto/x509/ |
A D | x509_meth.c | 88 int (*shutdown) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_shutdown() 90 method->shutdown = shutdown; in X509_LOOKUP_meth_set_shutdown() 97 return method->shutdown; in X509_LOOKUP_meth_get_shutdown()
|
A D | x509_local.h | 79 int (*shutdown) (X509_LOOKUP *ctx); member
|
/openssl-master/crypto/bio/ |
A D | bss_fd.c | 103 if (a->shutdown) { in fd_free() 163 b->shutdown = (int)num; in fd_ctrl() 176 ret = b->shutdown; in fd_ctrl() 179 b->shutdown = (int)num; in fd_ctrl()
|
A D | bss_sock.c | 93 if (a->shutdown) { in sock_free() 162 b->shutdown = (int)num; in sock_ctrl() 175 ret = b->shutdown; in sock_ctrl() 178 b->shutdown = (int)num; in sock_ctrl()
|
A D | bss_file.c | 122 if (a->shutdown) { in file_free() 209 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl() 269 b->shutdown = (int)num & BIO_CLOSE; in file_ctrl() 317 ret = (long)b->shutdown; in file_ctrl() 320 b->shutdown = (int)num; in file_ctrl()
|
A D | bss_mem.c | 125 bi->shutdown = 1; in mem_init() 162 if (a->shutdown && a->init && a->ptr != NULL) { in mem_buf_free() 303 b->shutdown = (int)num; in mem_ctrl() 317 ret = (long)b->shutdown; in mem_ctrl() 320 b->shutdown = (int)num; in mem_ctrl()
|
A D | bss_acpt.c | 87 bi->shutdown = 1; in acpt_new() 125 shutdown(c->accept_sock, 2); in acpt_close_socket() 140 if (a->shutdown) { in acpt_free() 472 b->shutdown = (int)num; in acpt_ctrl() 521 ret = b->shutdown; in acpt_ctrl() 524 b->shutdown = (int)num; in acpt_ctrl()
|
A D | bss_conn.c | 286 shutdown(bio->num, 2); in conn_close_socket() 300 if (a->shutdown) { in conn_free() 500 ret = b->shutdown; in conn_ctrl() 503 b->shutdown = (int)num; in conn_ctrl()
|
A D | bio_lib.c | 91 bio->shutdown = 1; in BIO_new_ex() 180 a->shutdown = shut; in BIO_set_shutdown() 185 return a->shutdown; in BIO_get_shutdown() 764 new_bio->shutdown = bio->shutdown; in BIO_dup_chain()
|
A D | bio_local.h | 125 int shutdown; member
|
A D | bss_bio.c | 536 ret = bio->shutdown; in bio_ctrl() 540 bio->shutdown = (int)num; in bio_ctrl()
|
A D | bss_dgram.c | 184 if (a->shutdown) { in dgram_clear() 424 b->shutdown = (int)num; in dgram_ctrl() 437 ret = b->shutdown; in dgram_ctrl() 440 b->shutdown = (int)num; in dgram_ctrl()
|
/openssl-master/VMS/ |
A D | msg_install.com | 4 $ ! P1 startup / setup / shutdown scripts directory
|
A D | msg_staging.com | 9 $ ! P5 startup / setup / shutdown scripts directory
|
A D | openssl_shutdown.com.in | 1 $ ! OpenSSL shutdown script
|
/openssl-master/ssl/record/ |
A D | rec_layer_d1.c | 470 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { in dtls1_read_bytes() 539 s->shutdown |= SSL_RECEIVED_SHUTDOWN; in dtls1_read_bytes() 607 s->shutdown |= SSL_RECEIVED_SHUTDOWN; in dtls1_read_bytes() 616 s->shutdown |= SSL_RECEIVED_SHUTDOWN; in dtls1_read_bytes() 628 if (s->shutdown & SSL_SENT_SHUTDOWN) { /* but we have not received a in dtls1_read_bytes()
|
A D | rec_layer_s3.c | 1402 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { in ssl3_read_bytes() 1579 s->shutdown |= SSL_RECEIVED_SHUTDOWN; in ssl3_read_bytes() 1587 s->shutdown |= SSL_RECEIVED_SHUTDOWN; in ssl3_read_bytes() 1611 if ((s->shutdown & SSL_SENT_SHUTDOWN) != 0) { in ssl3_read_bytes()
|
/openssl-master/ssl/ |
A D | s3_msg.c | 55 if (s->shutdown & SSL_SENT_SHUTDOWN && desc != SSL_AD_CLOSE_NOTIFY) in ssl3_send_alert()
|
A D | ssl_lib.c | 590 s->shutdown = 0; in SSL_clear() 1825 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { in ssl_read_internal() 1956 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { in ssl_peek_internal() 2016 if (s->shutdown & SSL_SENT_SHUTDOWN) { in ssl_write_internal() 2058 if (s->shutdown & SSL_SENT_SHUTDOWN) { in SSL_sendfile() 3854 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) && in SSL_get_error() 3902 s->shutdown = 0; in SSL_set_accept_state() 3911 s->shutdown = 0; in SSL_set_connect_state() 4082 ret->shutdown = s->shutdown; in SSL_dup() 4248 s->shutdown = mode; in SSL_set_shutdown() [all …]
|