Searched refs:profiles (Results 1 – 5 of 5) sorted by relevance
/openssl-master/ssl/ |
A D | d1_srtp.c | 64 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles() 70 if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) { in ssl_ctx_make_profiles() 80 if (sk_SRTP_PROTECTION_PROFILE_find(profiles, p) >= 0) { in ssl_ctx_make_profiles() 85 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, p)) { in ssl_ctx_make_profiles() 100 *out = profiles; in ssl_ctx_make_profiles() 104 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles() 108 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument 110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 113 int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles) in SSL_set_tlsext_use_srtp() argument 115 return ssl_ctx_make_profiles(profiles, &s->srtp_profiles); in SSL_set_tlsext_use_srtp()
|
/openssl-master/include/openssl/ |
A D | srtp.h | 44 __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 45 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
|
A D | ssl.h.in | 240 /* SRTP protection profiles for use with the use_srtp extension (RFC 5764)*/
|
/openssl-master/doc/man3/ |
A D | SSL_CTX_set_tlsext_use_srtp.pod | 15 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 16 int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 36 B<profiles> parameters should point to a NUL-terminated, colon delimited list of 65 protection profiles that it is willing to negotiate. 67 The currently configured list of protection profiles for either a client or a 93 success or NULL on error or if no protection profiles have been configured.
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 1410 SSL_R_NO_SRTP_PROFILES:359:no srtp profiles 1458 SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES:362:srtp could not allocate profiles
|
Completed in 14 milliseconds