Home
last modified time | relevance | path

Searched refs:MBEDTLS_TLS_SRTP_UNSET (Results 1 – 7 of 7) sorted by relevance

/third_party/mbedtls/library/
Dssl_tls12_server.c552 mbedtls_ssl_srtp_profile client_protection = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
589 ssl->dtls_srtp_info.chosen_dtls_srtp_profile = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
610 if (client_protection != MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
627 if (ssl->dtls_srtp_info.chosen_dtls_srtp_profile != MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
1983 (ssl->dtls_srtp_info.chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET)) { in ssl_write_use_srtp_ext()
2020 if (profile_value != MBEDTLS_TLS_SRTP_UNSET) { in ssl_write_use_srtp_ext()
Dssl_tls12_client.c471 if (profile_value != MBEDTLS_TLS_SRTP_UNSET) { in ssl_write_use_srtp_ext()
982 mbedtls_ssl_srtp_profile server_protection = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
1033 if (server_protection != MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
1039 ssl->dtls_srtp_info.chosen_dtls_srtp_profile = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
1055 if (ssl->dtls_srtp_info.chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
Dssl_misc.h1632 return MBEDTLS_TLS_SRTP_UNSET; in mbedtls_ssl_check_srtp_profile_value()
Dssl_tls.c3083 for (p = profiles; *p != MBEDTLS_TLS_SRTP_UNSET && in mbedtls_ssl_conf_dtls_srtp_protection_profiles()
3086 if (mbedtls_ssl_check_srtp_profile_value(*p) != MBEDTLS_TLS_SRTP_UNSET) { in mbedtls_ssl_conf_dtls_srtp_protection_profiles()
3111 if (dtls_srtp_info->chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET) { in mbedtls_ssl_get_dtls_srtp_negotiation_result()
/third_party/mbedtls/programs/ssl/
Dssl_client2.c824 MBEDTLS_TLS_SRTP_UNSET in main()
1847 { opt.force_srtp_profile, MBEDTLS_TLS_SRTP_UNSET }; in main()
2306 == MBEDTLS_TLS_SRTP_UNSET) { in main()
Dssl_server2.c1575 MBEDTLS_TLS_SRTP_UNSET in main()
2857 { opt.force_srtp_profile, MBEDTLS_TLS_SRTP_UNSET }; in main()
3606 == MBEDTLS_TLS_SRTP_UNSET) { in main()
/third_party/mbedtls/include/mbedtls/
Dssl.h1149 #define MBEDTLS_TLS_SRTP_UNSET ((uint16_t) 0x0000) macro