Home
last modified time | relevance | path

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

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dssl_tls12_client.c468 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()
H A Dssl_tls12_server.c548 mbedtls_ssl_srtp_profile client_protection = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
585 ssl->dtls_srtp_info.chosen_dtls_srtp_profile = MBEDTLS_TLS_SRTP_UNSET; in ssl_parse_use_srtp_ext()
606 if (client_protection != MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
623 if (ssl->dtls_srtp_info.chosen_dtls_srtp_profile != MBEDTLS_TLS_SRTP_UNSET) { in ssl_parse_use_srtp_ext()
1969 (ssl->dtls_srtp_info.chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET)) { in ssl_write_use_srtp_ext()
2006 if (profile_value != MBEDTLS_TLS_SRTP_UNSET) { in ssl_write_use_srtp_ext()
H A Dssl_misc.h1668 return MBEDTLS_TLS_SRTP_UNSET; in mbedtls_ssl_check_srtp_profile_value()
H A Dssl_tls.c2939 for (p = profiles; *p != MBEDTLS_TLS_SRTP_UNSET && in mbedtls_ssl_conf_dtls_srtp_protection_profiles()
2942 if (mbedtls_ssl_check_srtp_profile_value(*p) != MBEDTLS_TLS_SRTP_UNSET) { in mbedtls_ssl_conf_dtls_srtp_protection_profiles()
2967 if (dtls_srtp_info->chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET) { in mbedtls_ssl_get_dtls_srtp_negotiation_result()
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dssl.h1247 #define MBEDTLS_TLS_SRTP_UNSET ((uint16_t) 0x0000) macro