Searched refs:srtp_profiles (Results 1 - 13 of 13) sorted by relevance
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | d1_srtp.c | 110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 115 return ssl_ctx_make_profiles(profiles, &s->srtp_profiles); in SSL_set_tlsext_use_srtp() 121 if (s->srtp_profiles != NULL) { in STACK_OF() 122 return s->srtp_profiles; in STACK_OF() 123 } else if ((s->ctx != NULL) && (s->ctx->srtp_profiles != NULL)) { in STACK_OF() 124 return s->ctx->srtp_profiles; in STACK_OF()
|
H A D | ssl_local.h | 1146 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; member 1773 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; member
|
H A D | ssl_lib.c | 1346 sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles); in SSL_free() 3594 sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles); in SSL_CTX_free()
|
/third_party/openssl/ssl/ |
H A D | d1_srtp.c | 110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 115 return ssl_ctx_make_profiles(profiles, &s->srtp_profiles); in SSL_set_tlsext_use_srtp() 121 if (s->srtp_profiles != NULL) { in STACK_OF() 122 return s->srtp_profiles; in STACK_OF() 123 } else if ((s->ctx != NULL) && (s->ctx->srtp_profiles != NULL)) { in STACK_OF() 124 return s->ctx->srtp_profiles; in STACK_OF()
|
H A D | ssl_local.h | 1137 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; member 1717 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; member
|
H A D | ssl_lib.c | 1264 sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles); in SSL_free() 3494 sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles); in SSL_CTX_free()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | types.rs | 602 srtp_profiles: *mut c_void, 756 srtp_profiles: *mut c_void, 863 srtp_profiles: *mut c_void, 977 srtp_profiles: *mut c_void,
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_server.c | 1034 char *srtp_profiles = NULL; in s_server_main() local 1586 srtp_profiles = opt_arg(); in s_server_main() 1932 if (srtp_profiles != NULL) { in s_server_main() 1934 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) { in s_server_main()
|
H A D | s_client.c | 862 char *srtp_profiles = NULL; in s_client_main() local 1409 srtp_profiles = opt_arg(); in s_client_main() 1828 if (srtp_profiles != NULL) { in s_client_main() 1830 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) { in s_client_main()
|
/third_party/openssl/apps/ |
H A D | s_server.c | 1034 char *srtp_profiles = NULL; in s_server_main() local 1586 srtp_profiles = opt_arg(); in s_server_main() 1927 if (srtp_profiles != NULL) { in s_server_main() 1929 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) { in s_server_main()
|
H A D | s_client.c | 862 char *srtp_profiles = NULL; in s_client_main() local 1409 srtp_profiles = opt_arg(); in s_client_main() 1828 if (srtp_profiles != NULL) { in s_client_main() 1830 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) { in s_client_main()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 402 for profile in ssl.srtp_profiles().unwrap() { in test_connect_with_srtp_ssl()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 2648 pub fn srtp_profiles(&self) -> Option<&StackRef<SrtpProtectionProfile>> { in srtp_profiles() functions
|
Completed in 51 milliseconds