Home
last modified time | relevance | path

Searched refs:SSL_shutdown (Results 1 – 25 of 50) sorted by relevance

12

/openssl/doc/man3/
H A DSSL_shutdown.pod5 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 DSSL_CTX_set_quiet_shutdown.pod40 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 DSSL_set_shutdown.pod54 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 DSSL_clear.pod24 if L<SSL_shutdown(3)> was not called for the connection
74 L<SSL_shutdown(3)>, L<SSL_set_shutdown(3)>,
H A DSSL_free.pod32 L<SSL_shutdown(3)> was not called for the connection
74 L<SSL_shutdown(3)>, L<SSL_set_shutdown(3)>,
H A DSSL_get_error.pod17 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 DSSL_set_session.pod27 session cache (if used). A session is considered open, if L<SSL_shutdown(3)> was
H A DSSL_set_fd.pod67 L<SSL_shutdown(3)>, L<ssl(7)> , L<bio(7)>
H A DSSL_CTX_set_read_ahead.pod55 connection) after the SSL connection is finished using SSL_shutdown() reading
H A DSSL_accept.pod68 L<SSL_shutdown(3)>, L<ssl(7)>, L<bio(7)>,
/openssl/test/
H A Dsslapitest.c495 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 Dtls13ccstest.c309 SSL_shutdown(cssl); in test_tls13ccs()
310 SSL_shutdown(sssl); in test_tls13ccs()
H A Dquic_client_test.c149 ret = SSL_shutdown(c_ssl); in test_quic_client_ex()
H A Ddtlstest.c232 SSL_shutdown(clientssl); in test_dtls_drop_records()
233 SSL_shutdown(serverssl); in test_dtls_drop_records()
H A Drpktest.c525 SSL_shutdown(clientssl); in test_rpk()
526 SSL_shutdown(serverssl); in test_rpk()
/openssl/demos/sslecho/
H A Dmain.c264 SSL_shutdown(ssl); in main()
356 SSL_shutdown(ssl); in main()
/openssl/ssl/
H A Dbio_ssl.c83 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 Dossl-guide-quic-client-block.pod296 /* 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 Dossl-guide-tls-client-non-block.pod143 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 Dossl-guide-quic-client-non-block.pod176 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 Dtls-client-block.c265 ret = SSL_shutdown(ssl); in main()
H A Dquic-client-block.c314 ret = SSL_shutdown(ssl); in main()
H A Dtls-client-non-block.c344 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
H A Dquic-client-non-block.c406 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
H A Dquic-multi-stream.c414 ret = SSL_shutdown(ssl); in main()

Completed in 61 milliseconds

12