[Freeswitch-trunk] [commit] r13737 - freeswitch/trunk/src
FreeSWITCH SVN
brian at freeswitch.org
Tue Jun 9 16:17:51 PDT 2009
Author: brian
Date: Tue Jun 9 18:17:50 2009
New Revision: 13737
Log:
costmetic change so outbound srtp doesn't show up as (null)
Modified:
freeswitch/trunk/src/switch_rtp.c
Modified: freeswitch/trunk/src/switch_rtp.c
==============================================================================
--- freeswitch/trunk/src/switch_rtp.c (original)
+++ freeswitch/trunk/src/switch_rtp.c Tue Jun 9 18:17:50 2009
@@ -948,16 +948,25 @@
rtp_session->crypto_keys[direction] = crypto_key;
memset(policy, 0, sizeof(*policy));
-
+
switch (crypto_key->type) {
case AES_CM_128_HMAC_SHA1_80:
crypto_policy_set_aes_cm_128_hmac_sha1_80(&policy->rtp);
+ if (switch_channel_direction(channel) == SWITCH_CALL_DIRECTION_OUTBOUND) {
+ switch_channel_set_variable(channel, "sip_has_crypto", "AES_CM_128_HMAC_SHA1_80");
+ }
break;
case AES_CM_128_HMAC_SHA1_32:
crypto_policy_set_aes_cm_128_hmac_sha1_32(&policy->rtp);
+ if (switch_channel_direction(channel) == SWITCH_CALL_DIRECTION_OUTBOUND) {
+ switch_channel_set_variable(channel, "sip_has_crypto", "AES_CM_128_HMAC_SHA1_32");
+ }
break;
case AES_CM_128_NULL_AUTH:
crypto_policy_set_aes_cm_128_null_auth(&policy->rtp);
+ if (switch_channel_direction(channel) == SWITCH_CALL_DIRECTION_OUTBOUND) {
+ switch_channel_set_variable(channel, "sip_has_crypto", "AES_CM_128_NULL_AUTH");
+ }
break;
default:
break;
More information about the Freeswitch-trunk
mailing list