Home
last modified time | relevance | path

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

123

/freebsd/crypto/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);
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 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(),
171 be performed on the connection and SSL_shutdown() must not be called.
181 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
/freebsd/crypto/openssl/test/
H A Dsslapitest.c505 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 Dtls13ccstest.c311 SSL_shutdown(cssl); in test_tls13ccs()
312 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.c227 SSL_shutdown(clientssl); in test_dtls_drop_records()
228 SSL_shutdown(serverssl); in test_dtls_drop_records()
/freebsd/crypto/openssl/demos/sslecho/
H A Dmain.c264 SSL_shutdown(ssl); in main()
361 SSL_shutdown(ssl); in main()
/freebsd/crypto/openssl/ssl/
H A Dbio_ssl.c85 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 Dossl-guide-quic-client-block.pod319 /* 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 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.
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 Dsslutils.c175 SSL_shutdown(ssl); in ssl_finish()
/freebsd/crypto/openssl/demos/quic/server/
H A Dserver.c130 if (SSL_shutdown(conn) != 1) { in run_quic_conn()
/freebsd/crypto/openssl/demos/guide/
H A Dtls-client-block.c265 ret = SSL_shutdown(ssl); in main()
H A Dquic-client-block.c315 ret = SSL_shutdown(ssl); in main()
H A Dquic-server-block.c269 while (SSL_shutdown(conn) != 1) in run_quic_server()
H A Dtls-client-non-block.c344 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
H A Dquic-multi-stream.c412 ret = SSL_shutdown(ssl); in main()
H A Dquic-client-non-block.c407 while ((ret = SSL_shutdown(ssl)) != 1) { in main()
/freebsd/usr.sbin/rpc.tlsclntd/
H A Drpc.tlsclntd.c319 SSL_shutdown(slp->ssl); in rpctlscd_handlerecord_2_svc()
354 SSL_shutdown(slp->ssl); in rpctlscd_disconnect_2_svc()

123