From: Brian West Date: Thu, 24 Aug 2017 20:06:04 +0000 (-0500) Subject: [core] FS-10587 502 response sent on codec mismatch X-Git-Tag: v1.6.20~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ada6bd35af3aa588e8c4315f505ce6a8878d46a;p=thirdparty%2Ffreeswitch.git [core] FS-10587 502 response sent on codec mismatch --- diff --git a/src/switch_core_media.c b/src/switch_core_media.c index d6aba883ea..32a16899de 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -7558,14 +7558,14 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_activate_rtp(switch_core_sessi } else { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "VIDEO RTP REPORTS ERROR: [%s]\n", switch_str_nil(err)); - switch_channel_hangup(session->channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER); + switch_channel_hangup(session->channel, SWITCH_CAUSE_INCOMPATIBLE_DESTINATION); goto end; } } } else { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "AUDIO RTP REPORTS ERROR: [%s]\n", switch_str_nil(err)); - switch_channel_hangup(session->channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER); + switch_channel_hangup(session->channel, SWITCH_CAUSE_INCOMPATIBLE_DESTINATION); status = SWITCH_STATUS_FALSE; goto end; }