Home
last modified time | relevance | path

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

/third_party/openssl/include/openssl/
Ddtls1.h17 # define DTLS1_VERSION 0xFEFF macro
19 # define DTLS_MIN_VERSION DTLS1_VERSION
/third_party/openssl/ssl/
Dmethods.c116 IMPLEMENT_dtls1_meth_func(DTLS1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_DTLSv1, in IMPLEMENT_tls_meth_func()
136 IMPLEMENT_dtls1_meth_func(DTLS1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_DTLSv1, in IMPLEMENT_tls_meth_func()
156 IMPLEMENT_dtls1_meth_func(DTLS1_VERSION, SSL_METHOD_NO_SUITEB, SSL_OP_NO_DTLSv1, in IMPLEMENT_tls_meth_func()
Dd1_lib.c485 if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00)) { in DTLSv1_listen()
710 version = (s->method->version == DTLS_ANY_VERSION) ? DTLS1_VERSION in DTLSv1_listen()
Dssl_lib.c485 min_version = DTLS1_VERSION; in ssl_check_allowed_versions()
490 max_version = DTLS1_VERSION; in ssl_check_allowed_versions()
493 if (min_version == DTLS1_VERSION) in ssl_check_allowed_versions()
499 || (DTLS_VERSION_GE(min_version, DTLS1_VERSION) in ssl_check_allowed_versions()
500 && DTLS_VERSION_GE(DTLS1_VERSION, max_version)) in ssl_check_allowed_versions()
3786 case DTLS1_VERSION: in ssl_protocol_to_string()
Dssl_conf.c322 {"DTLSv1", DTLS1_VERSION}, in protocol_from_string()
Dt1_trce.c68 {DTLS1_VERSION, "DTLS 1.0"},
Dssl_sess.c292 case DTLS1_VERSION: in ssl_generate_session_id()
Ds3_lib.c2681 DTLS1_BAD_VER, DTLS1_VERSION,
/third_party/openssl/test/
Ddtlstest.c66 DTLS1_VERSION, DTLS_MAX_VERSION, in test_dtls_unprocessed()
161 DTLS1_VERSION, DTLS_MAX_VERSION, in test_dtls_drop_records()
272 DTLS1_VERSION, DTLS_MAX_VERSION, in test_cookie()
304 DTLS1_VERSION, DTLS_MAX_VERSION, in test_dtls_duplicate_records()
Dssltest_old.c821 {"dtls1", DTLS1_VERSION}, in protocol_from_string()
1381 min_version = DTLS1_VERSION; in main()
1382 max_version = DTLS1_VERSION; in main()
Dssl_test_ctx.c160 {"DTLSv1", DTLS1_VERSION},
Dsslapitest.c806 DTLS1_VERSION, DTLS_MAX_VERSION, in test_large_message_dtls()
5512 DTLS1_VERSION, DTLS_MAX_VERSION, in test_ssl_pending()
/third_party/openssl/doc/man3/
DSSL_CTX_set_min_proto_version.pod43 B<DTLS1_VERSION>, B<DTLS1_2_VERSION> for DTLS.
/third_party/openssl/ssl/record/
Drec_layer_d1.c870 *(p++) = DTLS1_VERSION >> 8; in do_dtls1_write()
871 *(p++) = DTLS1_VERSION & 0xff; in do_dtls1_write()
/third_party/openssl/apps/
Ds_cb.c493 {"DTLS 1.0", DTLS1_VERSION},
575 version == DTLS1_VERSION || version == DTLS1_BAD_VER) { in msg_cb()
Ds_server.c1487 min_version = DTLS1_VERSION; in s_server_main()
1488 max_version = DTLS1_VERSION; in s_server_main()
2511 if (SSL_version(con) != DTLS1_VERSION) in sv_body()
Ds_client.c1334 min_version = DTLS1_VERSION; in s_client_main()
1335 max_version = DTLS1_VERSION; in s_client_main()
/third_party/openssl/ssl/statem/
Dstatem.c357 if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00) && in state_machine()
Dstatem_lib.c1467 {DTLS1_VERSION, dtlsv1_client_method, dtlsv1_server_method},
1470 {DTLS1_VERSION, NULL, NULL},
Dstatem_srvr.c1289 if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION) in dtls_raw_hello_verify_request()