Home
last modified time | relevance | path

Searched refs:SSL_OP_IGNORE_UNEXPECTED_EOF (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dnet_help.c1271 #if defined(SSL_OP_IGNORE_UNEXPECTED_EOF) in listen_sslctx_create()
1275 if((SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF) & in listen_sslctx_create()
1276 SSL_OP_IGNORE_UNEXPECTED_EOF) != SSL_OP_IGNORE_UNEXPECTED_EOF) { in listen_sslctx_create()
1277 log_crypto_err("could not set SSL_OP_IGNORE_UNEXPECTED_EOF"); in listen_sslctx_create()
1551 #if defined(SSL_OP_IGNORE_UNEXPECTED_EOF) in set_auth_name_on_ssl()
1555 if((SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF) & in set_auth_name_on_ssl()
1556 SSL_OP_IGNORE_UNEXPECTED_EOF) != SSL_OP_IGNORE_UNEXPECTED_EOF) { in set_auth_name_on_ssl()
1557 log_crypto_err("could not set SSL_OP_IGNORE_UNEXPECTED_EOF"); in set_auth_name_on_ssl()
[all...]
/freebsd/crypto/openssl/demos/guide/
H A Dtls-server-block.c120 opts = SSL_OP_IGNORE_UNEXPECTED_EOF; in main()
/freebsd/crypto/krb5/src/plugins/tls/k5tls/
H A Dopenssl.c452 #ifdef SSL_OP_IGNORE_UNEXPECTED_EOF in setup()
461 options |= SSL_OP_IGNORE_UNEXPECTED_EOF; in setup()
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_options.pod212 =item SSL_OP_IGNORE_UNEXPECTED_EOF
534 The B<SSL_OP_NO_EXTENDED_MASTER_SECRET> and B<SSL_OP_IGNORE_UNEXPECTED_EOF>
H A DSSL_get_error.pod58 This error can also appear when the option B<SSL_OP_IGNORE_UNEXPECTED_EOF>
H A DSSL_shutdown.pod192 B<SSL_OP_IGNORE_UNEXPECTED_EOF> can be set. For more information, see
H A DSSL_CONF_cmd.pod651 B<IgnoreUnexpectedEOF>: Equivalent to B<SSL_OP_IGNORE_UNEXPECTED_EOF>.
/freebsd/crypto/openssl/ssl/
H A Dssl_conf.c410 SSL_FLAG_TBL("IgnoreUnexpectedEOF", SSL_OP_IGNORE_UNEXPECTED_EOF), in cmd_Options()
H A Dssl_local.h3136 SSL_OP_IGNORE_UNEXPECTED_EOF )
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-tls-server-block.pod82 opts = SSL_OP_IGNORE_UNEXPECTED_EOF;
H A Dossl-guide-migration.pod2474 New SSL option SSL_OP_IGNORE_UNEXPECTED_EOF
2476 The SSL option SSL_OP_IGNORE_UNEXPECTED_EOF is introduced. If that option
/freebsd/crypto/openssl/ssl/record/
H A Drec_layer_s3.c511 } else if ((s->options & SSL_OP_IGNORE_UNEXPECTED_EOF) != 0) { in ossl_tls_handle_rlayer_return()
/freebsd/crypto/openssl/apps/
H A Ds_client.c1846 SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF); in s_client_main()
H A Ds_server.c1986 SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF); in s_server_main()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-api-ssl-funcs.md884 - `SSL_OP_IGNORE_UNEXPECTED_EOF`
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h363 # define SSL_OP_IGNORE_UNEXPECTED_EOF SSL_OP_BIT(7) macro
H A Dssl.h.in340 # define SSL_OP_IGNORE_UNEXPECTED_EOF SSL_OP_BIT(7) macro
/freebsd/crypto/openssl/test/
H A Dsslapitest.c8629 SSL_CTX_set_options(sctx, SSL_OP_IGNORE_UNEXPECTED_EOF); in test_incorrect_shutdown()
/freebsd/contrib/unbound/doc/
H A DChangelog1378 - Fix #812, fix #846, by using the SSL_OP_IGNORE_UNEXPECTED_EOF option
/freebsd/crypto/openssl/
H A DCHANGES.md2872 * The SSL option SSL_OP_IGNORE_UNEXPECTED_EOF is introduced.