Lines Matching refs:profiles
64 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
70 if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) {
80 if (sk_SRTP_PROTECTION_PROFILE_find(profiles, p) >= 0) {
85 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, p)) {
100 *out = profiles;
104 sk_SRTP_PROTECTION_PROFILE_free(profiles);
108 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles)
110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles);
113 int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles)
115 return ssl_ctx_make_profiles(profiles, &s->srtp_profiles);