Symbol: SRTP_PROTECTION_PROFILE
crypto/openssl/apps/s_client.c
3648
SRTP_PROTECTION_PROFILE *srtp_profile = SSL_get_selected_srtp_profile(s);
crypto/openssl/apps/s_server.c
3209
SRTP_PROTECTION_PROFILE *srtp_profile
crypto/openssl/include/openssl/srtp.h
59
__owur STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl);
crypto/openssl/include/openssl/srtp.h
60
__owur SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
crypto/openssl/include/openssl/ssl.h
249
SKM_DEFINE_STACK_OF_INTERNAL(SRTP_PROTECTION_PROFILE, SRTP_PROTECTION_PROFILE, SRTP_PROTECTION_PROFILE)
crypto/openssl/include/openssl/ssl.h
251
#define sk_SRTP_PROTECTION_PROFILE_value(sk, idx) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_value(ossl_check_const_SRTP_PROTECTION_PROFILE_sk_type(sk), (idx)))
crypto/openssl/include/openssl/ssl.h
252
#define sk_SRTP_PROTECTION_PROFILE_new(cmp) ((STACK_OF(SRTP_PROTECTION_PROFILE) *)OPENSSL_sk_new(ossl_check_SRTP_PROTECTION_PROFILE_compfunc_type(cmp)))
crypto/openssl/include/openssl/ssl.h
253
#define sk_SRTP_PROTECTION_PROFILE_new_null() ((STACK_OF(SRTP_PROTECTION_PROFILE) *)OPENSSL_sk_new_null())
crypto/openssl/include/openssl/ssl.h
254
#define sk_SRTP_PROTECTION_PROFILE_new_reserve(cmp, n) ((STACK_OF(SRTP_PROTECTION_PROFILE) *)OPENSSL_sk_new_reserve(ossl_check_SRTP_PROTECTION_PROFILE_compfunc_type(cmp), (n)))
crypto/openssl/include/openssl/ssl.h
258
#define sk_SRTP_PROTECTION_PROFILE_delete(sk, i) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_delete(ossl_check_SRTP_PROTECTION_PROFILE_sk_type(sk), (i)))
crypto/openssl/include/openssl/ssl.h
259
#define sk_SRTP_PROTECTION_PROFILE_delete_ptr(sk, ptr) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_delete_ptr(ossl_check_SRTP_PROTECTION_PROFILE_sk_type(sk), ossl_check_SRTP_PROTECTION_PROFILE_type(ptr)))
crypto/openssl/include/openssl/ssl.h
262
#define sk_SRTP_PROTECTION_PROFILE_pop(sk) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_pop(ossl_check_SRTP_PROTECTION_PROFILE_sk_type(sk)))
crypto/openssl/include/openssl/ssl.h
263
#define sk_SRTP_PROTECTION_PROFILE_shift(sk) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_shift(ossl_check_SRTP_PROTECTION_PROFILE_sk_type(sk)))
crypto/openssl/include/openssl/ssl.h
266
#define sk_SRTP_PROTECTION_PROFILE_set(sk, idx, ptr) ((SRTP_PROTECTION_PROFILE *)OPENSSL_sk_set(ossl_check_SRTP_PROTECTION_PROFILE_sk_type(sk), (idx), ossl_check_SRTP_PROTECTION_PROFILE_type(ptr)))
crypto/openssl/include/openssl/ssl.h
272
#define sk_SRTP_PROTECTION_PROFILE_dup(sk) ((STACK_OF(SRTP_PROTECTION_PROFILE) *)OPENSSL_sk_dup(ossl_check_const_SRTP_PROTECTION_PROFILE_sk_type(sk)))
crypto/openssl/include/openssl/ssl.h
273
#define sk_SRTP_PROTECTION_PROFILE_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(SRTP_PROTECTION_PROFILE) *)OPENSSL_sk_deep_copy(ossl_check_const_SRTP_PROTECTION_PROFILE_sk_type(sk), ossl_check_SRTP_PROTECTION_PROFILE_copyfunc_type(copyfunc), ossl_check_SRTP_PROTECTION_PROFILE_freefunc_type(freefunc)))
crypto/openssl/ssl/d1_srtp.c
101
const SRTP_PROTECTION_PROFILE *p;
crypto/openssl/ssl/d1_srtp.c
113
(SRTP_PROTECTION_PROFILE *)p)
crypto/openssl/ssl/d1_srtp.c
120
(SRTP_PROTECTION_PROFILE *)p)) {
crypto/openssl/ssl/d1_srtp.c
161
STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *s)
crypto/openssl/ssl/d1_srtp.c
176
SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
crypto/openssl/ssl/d1_srtp.c
23
static const SRTP_PROTECTION_PROFILE srtp_known_profiles[] = {
crypto/openssl/ssl/d1_srtp.c
76
const SRTP_PROTECTION_PROFILE **pptr, size_t len)
crypto/openssl/ssl/d1_srtp.c
78
const SRTP_PROTECTION_PROFILE *p;
crypto/openssl/ssl/d1_srtp.c
95
STACK_OF(SRTP_PROTECTION_PROFILE) **out)
crypto/openssl/ssl/d1_srtp.c
97
STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
crypto/openssl/ssl/ssl_local.h
1097
STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
crypto/openssl/ssl/ssl_local.h
1771
STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
crypto/openssl/ssl/ssl_local.h
1773
SRTP_PROTECTION_PROFILE *srtp_profile;
crypto/openssl/ssl/statem/extensions_clnt.c
1764
STACK_OF(SRTP_PROTECTION_PROFILE) *clnt;
crypto/openssl/ssl/statem/extensions_clnt.c
1765
SRTP_PROTECTION_PROFILE *prof;
crypto/openssl/ssl/statem/extensions_clnt.c
480
STACK_OF(SRTP_PROTECTION_PROFILE) *clnt = SSL_get_srtp_profiles(ssl);
crypto/openssl/ssl/statem/extensions_clnt.c
497
const SRTP_PROTECTION_PROFILE *prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i);
crypto/openssl/ssl/statem/extensions_srvr.c
491
STACK_OF(SRTP_PROTECTION_PROFILE) *srvr;
crypto/openssl/ssl/statem/extensions_srvr.c
528
SRTP_PROTECTION_PROFILE *sprof = sk_SRTP_PROTECTION_PROFILE_value(srvr, i);