From: Brian West Date: Thu, 24 Aug 2017 20:04:02 +0000 (-0500) Subject: [core] FS-10587 502 response sent on codec mismatch X-Git-Tag: v1.8.0~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccb32525d643c371119c64422555a3b9102b800b;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 057ad376b3..72d0875210 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -9135,14 +9135,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; }