Home
last modified time | relevance | path

Searched refs:SSL_get_shutdown (Results 1 – 18 of 18) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_set_shutdown.pod5 SSL_set_shutdown, SSL_get_shutdown - manipulate shutdown state of an SSL connection
13 int SSL_get_shutdown(const SSL *ssl);
19 SSL_get_shutdown() returns the shutdown mode of B<ssl>.
64 SSL_get_shutdown() returns the current setting.
DSSL_shutdown.pod126 SSL_get_shutdown() (see also L<SSL_set_shutdown(3)> call.
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h1512 int SSL_get_shutdown(const SSL *ssl);
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c601 int SSL_get_shutdown(const SSL *ssl) in SSL_get_shutdown() function
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs761 pub fn SSL_get_shutdown(ssl: *const SSL) -> c_int; in SSL_get_shutdown() function
/third_party/nghttp2/src/
Dshrpx_connection.cc106 SSL_get_shutdown(tls.ssl) | SSL_RECEIVED_SHUTDOWN); in disconnect()
DHttpServer.cc567 SSL_set_shutdown(ssl_, SSL_get_shutdown(ssl_) | SSL_RECEIVED_SHUTDOWN); in ~Http2Handler()
Dnghttp.cc777 SSL_set_shutdown(ssl, SSL_get_shutdown(ssl) | SSL_RECEIVED_SHUTDOWN); in disconnect()
Dh2load.cc736 SSL_set_shutdown(ssl, SSL_get_shutdown(ssl) | SSL_RECEIVED_SHUTDOWN); in disconnect()
/third_party/openssl/util/
Dlibssl.num329 SSL_get_shutdown 330 3_0_0 EXIST::FUNCTION:
/third_party/node/src/
Dtls_wrap.cc549 int flags = SSL_get_shutdown(ssl_.get()); in ClearOut()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs3654 #[corresponds(SSL_get_shutdown)]
3657 let bits = ffi::SSL_get_shutdown(self.ssl.as_ptr()); in get_shutdown()
/third_party/libcoap/src/
Dcoap_openssl.c2932 if (!SSL_in_init(ssl) && !(SSL_get_shutdown(ssl) & SSL_SENT_SHUTDOWN)) { in coap_dtls_free_session()
3282 if (!SSL_in_init(ssl) && !(SSL_get_shutdown(ssl) & SSL_SENT_SHUTDOWN)) { in coap_tls_free_session()
/third_party/openssl/ohos_lite/include/openssl/
Dssl.h1980 __owur int SSL_get_shutdown(const SSL *ssl);
/third_party/openssl/include/openssl/
Dssl.h.in209 /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */
2056 __owur int SSL_get_shutdown(const SSL *ssl);
/third_party/python/Modules/
D_ssl.c2517 SSL_get_shutdown(self->ssl) == SSL_RECEIVED_SHUTDOWN) in _ssl__SSLSocket_read_impl()
/third_party/openssl/ssl/
Dssl_lib.c4295 int SSL_get_shutdown(const SSL *s) in SSL_get_shutdown() function
/third_party/openssl/test/
Dsslapitest.c7986 || !TEST_int_eq(SSL_get_shutdown(serverssl), in test_shutdown()