Searched refs:SSL_shutdown (Results 1 – 25 of 50) sorted by relevance
12
/openssl/doc/man3/ |
H A D | SSL_shutdown.pod | 5 SSL_shutdown, SSL_shutdown_ex - shut down a TLS/SSL or QUIC connection 11 int SSL_shutdown(SSL *ssl); 32 to SSL_shutdown() when not being used with QUIC. 39 In general, calling SSL_shutdown() in nonblocking mode will initiate the 42 SSL_shutdown() will return 1. See the RETURN VALUES section for more 78 read direction is closed by the peer. Once SSL_shutdown() is called, 113 but would currently block), SSL_shutdown() returns 0 to indicate that the 138 from the network, such as L<SSL_read(3)> or SSL_shutdown(). These flags 167 Calling SSL_shutdown() sets the SSL_SENT_SHUTDOWN flag (see 175 SSL_shutdown() can be modified to set the connection to the "shutdown" [all …]
|
H A D | SSL_CTX_set_quiet_shutdown.pod | 40 close_notify alert messages using L<SSL_shutdown(3)> 43 When setting the "quiet shutdown" flag to 1, L<SSL_shutdown(3)> 45 (L<SSL_shutdown(3)> then behaves like 63 L<ssl(7)>, L<SSL_shutdown(3)>,
|
H A D | SSL_set_shutdown.pod | 54 close alert to the peer (see L<SSL_shutdown(3)>). 58 L<SSL_shutdown(3)> or SSL_set_shutdown() itself. 78 L<ssl(7)>, L<SSL_shutdown(3)>,
|
H A D | SSL_clear.pod | 24 if L<SSL_shutdown(3)> was not called for the connection 74 L<SSL_shutdown(3)>, L<SSL_set_shutdown(3)>,
|
H A D | SSL_free.pod | 32 L<SSL_shutdown(3)> was not called for the connection 74 L<SSL_shutdown(3)>, L<SSL_set_shutdown(3)>,
|
H A D | SSL_get_error.pod | 17 SSL_read_ex(), SSL_read(), SSL_peek_ex(), SSL_peek(), SSL_shutdown(), 170 be performed on the connection and SSL_shutdown() must not be called. 180 connection and SSL_shutdown() must not be called.
|
H A D | SSL_set_session.pod | 27 session cache (if used). A session is considered open, if L<SSL_shutdown(3)> was
|
H A D | SSL_set_fd.pod | 67 L<SSL_shutdown(3)>, L<ssl(7)> , L<bio(7)>
|
H A D | SSL_CTX_set_read_ahead.pod | 55 connection) after the SSL connection is finished using SSL_shutdown() reading
|
H A D | SSL_accept.pod | 68 L<SSL_shutdown(3)>, L<ssl(7)>, L<bio(7)>,
|
/openssl/test/ |
H A D | sslapitest.c | 495 SSL_shutdown(clientssl); in test_keylog_no_master_key() 496 SSL_shutdown(serverssl); in test_keylog_no_master_key() 2573 SSL_shutdown(clientssl); in test_tickets() 2574 SSL_shutdown(serverssl); in test_tickets() 2624 SSL_shutdown(clientssl); in test_tickets() 2625 SSL_shutdown(serverssl); in test_tickets() 2866 SSL_shutdown(clientssl); in test_extra_tickets() 2867 SSL_shutdown(serverssl); in test_extra_tickets() 3704 SSL_shutdown(clientssl); in test_early_data_read_write() 3705 SSL_shutdown(serverssl); in test_early_data_read_write() [all …]
|
H A D | tls13ccstest.c | 309 SSL_shutdown(cssl); in test_tls13ccs() 310 SSL_shutdown(sssl); in test_tls13ccs()
|
H A D | quic_client_test.c | 149 ret = SSL_shutdown(c_ssl); in test_quic_client_ex()
|
H A D | dtlstest.c | 232 SSL_shutdown(clientssl); in test_dtls_drop_records() 233 SSL_shutdown(serverssl); in test_dtls_drop_records()
|
H A D | rpktest.c | 525 SSL_shutdown(clientssl); in test_rpk() 526 SSL_shutdown(serverssl); in test_rpk()
|
/openssl/demos/sslecho/ |
H A D | main.c | 264 SSL_shutdown(ssl); in main() 356 SSL_shutdown(ssl); in main()
|
/openssl/ssl/ |
H A D | bio_ssl.c | 83 SSL_shutdown(bs->ssl); in ssl_free() 245 SSL_shutdown(ssl); in ssl_ctrl() 532 SSL_shutdown(bdata->ssl); in BIO_ssl_shutdown()
|
/openssl/doc/man7/ |
H A D | ossl-guide-quic-client-block.pod | 296 /* Connection is already closed. Skip SSL_shutdown() */ 333 this via the L<SSL_shutdown(3)> function. This example for QUIC is very similar 334 to the TLS version. However the L<SSL_shutdown(3)> function will need to be 338 * Repeatedly call SSL_shutdown() until the connection is fully 342 ret = SSL_shutdown(ssl); 353 connection and no more data can be sent or received. L<SSL_shutdown(3)> returns 359 successfully L<SSL_shutdown(3)> will return 1 to indicate success.
|
H A D | ossl-guide-tls-client-non-block.pod | 143 an error. L<SSL_shutdown(3)> will return a negative value to incidate an error. 163 shut it down with L<SSL_shutdown(3)>. B<SSL_ERROR_SYSCALL> indicates that 329 L<SSL_shutdown(3)> give a return value of 0, and then we would continue to call 331 the shutdown). In this particular example we don't expect SSL_shutdown() to 333 has shutdown already. So we just keep calling it until SSL_shutdown() returns 1. 335 operation several times. If L<SSL_shutdown(3)> returns a negative result then we 343 while ((ret = SSL_shutdown(ssl)) != 1) {
|
H A D | ossl-guide-quic-client-non-block.pod | 176 an error. L<SSL_shutdown(3)> will return a negative value to incidate an error. 419 L<SSL_shutdown(3)>. 422 L<SSL_shutdown(3)> give a return value of 0, and then we should continue to call 425 have to retry this operation several times. If L<SSL_shutdown(3)> returns a 431 * Repeatedly call SSL_shutdown() until the connection is fully 434 while ((ret = SSL_shutdown(ssl)) != 1) {
|
/openssl/demos/guide/ |
H A D | tls-client-block.c | 265 ret = SSL_shutdown(ssl); in main()
|
H A D | quic-client-block.c | 314 ret = SSL_shutdown(ssl); in main()
|
H A D | tls-client-non-block.c | 344 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
|
H A D | quic-client-non-block.c | 406 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
|
H A D | quic-multi-stream.c | 414 ret = SSL_shutdown(ssl); in main()
|
Completed in 61 milliseconds
12