| /freebsd/crypto/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); 24 SSL_shutdown() shuts down an active connection represented by an SSL object. I<ssl> B<MUST NOT> be … 26 SSL_shutdown_ex() is an extended version of SSL_shutdown(). If non-NULL, I<args> 32 to SSL_shutdown() when not being used with QUIC. 34 While the general operation of SSL_shutdown() is common between protocols, the 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 45 SSL_shutdown() should not be called if a previous fatal error has occurred on a 72 Calling SSL_shutdown() on an SSL/TLS or DTLS SSL object initiates 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(), 171 be performed on the connection and SSL_shutdown() must not be called. 181 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
|
| /freebsd/crypto/openssl/test/ |
| H A D | sslapitest.c | 505 SSL_shutdown(clientssl); in test_keylog_no_master_key() 506 SSL_shutdown(serverssl); in test_keylog_no_master_key() 634 SSL_shutdown(clientssl); in test_client_cert_verify_cb() 638 SSL_shutdown(serverssl); in test_client_cert_verify_cb() 1290 SSL_shutdown(clientssl); in execute_test_ktls() 1294 SSL_shutdown(serverssl); in execute_test_ktls() 1433 SSL_shutdown(clientssl); in execute_test_ktls_sendfile() 1437 SSL_shutdown(serverssl); in execute_test_ktls_sendfile() 2539 SSL_shutdown(clientssl); in check_resumption() 2540 SSL_shutdown(serverssl); in check_resumption() [all …]
|
| H A D | tls13ccstest.c | 311 SSL_shutdown(cssl); in test_tls13ccs() 312 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 | 227 SSL_shutdown(clientssl); in test_dtls_drop_records() 228 SSL_shutdown(serverssl); in test_dtls_drop_records()
|
| /freebsd/crypto/openssl/demos/sslecho/ |
| H A D | main.c | 264 SSL_shutdown(ssl); in main() 361 SSL_shutdown(ssl); in main()
|
| /freebsd/crypto/openssl/ssl/ |
| H A D | bio_ssl.c | 85 SSL_shutdown(bs->ssl); in ssl_free() 247 SSL_shutdown(ssl); in ssl_ctrl() 539 SSL_shutdown(bdata->ssl); in BIO_ssl_shutdown()
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | ossl-guide-quic-client-block.pod | 319 /* Connection is already closed. Skip SSL_shutdown() */ 356 this via the L<SSL_shutdown(3)> function. This example for QUIC is very similar 357 to the TLS version. However the L<SSL_shutdown(3)> function will need to be 361 * Repeatedly call SSL_shutdown() until the connection is fully 365 ret = SSL_shutdown(ssl); 376 connection and no more data can be sent or received. L<SSL_shutdown(3)> returns 382 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. 426 L<SSL_shutdown(3)>. 429 L<SSL_shutdown(3)> give a return value of 0, and then we should continue to call 432 have to retry this operation several times. If L<SSL_shutdown(3)> returns a 438 * Repeatedly call SSL_shutdown() until the connection is fully 441 while ((ret = SSL_shutdown(ssl)) != 1) {
|
| /freebsd/contrib/libpcap/ |
| H A D | sslutils.c | 175 SSL_shutdown(ssl); in ssl_finish()
|
| /freebsd/crypto/openssl/demos/quic/server/ |
| H A D | server.c | 130 if (SSL_shutdown(conn) != 1) { in run_quic_conn()
|
| /freebsd/crypto/openssl/demos/guide/ |
| H A D | tls-client-block.c | 265 ret = SSL_shutdown(ssl); in main()
|
| H A D | quic-client-block.c | 315 ret = SSL_shutdown(ssl); in main()
|
| H A D | quic-server-block.c | 269 while (SSL_shutdown(conn) != 1) in run_quic_server()
|
| H A D | tls-client-non-block.c | 344 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
|
| H A D | quic-multi-stream.c | 412 ret = SSL_shutdown(ssl); in main()
|
| H A D | quic-client-non-block.c | 407 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
|
| /freebsd/usr.sbin/rpc.tlsclntd/ |
| H A D | rpc.tlsclntd.c | 319 SSL_shutdown(slp->ssl); in rpctlscd_handlerecord_2_svc() 354 SSL_shutdown(slp->ssl); in rpctlscd_disconnect_2_svc()
|