Merge "chan_pjsip.c: Fix topology refresh response code accuracy."

This commit is contained in:
Joshua Colp 2017-08-25 08:32:43 -05:00 committed by Gerrit Code Review
commit a6a3737519
1 changed files with 2 additions and 2 deletions

View File

@ -1484,14 +1484,14 @@ static struct topology_change_refresh_data *topology_change_refresh_data_alloc(
static int on_topology_change_response(struct ast_sip_session *session, pjsip_rx_data *rdata)
{
if (rdata->msg_info.msg->line.status.code == 200) {
if (PJSIP_IS_STATUS_IN_CLASS(rdata->msg_info.msg->line.status.code, 200)) {
/* The topology was changed to something new so give notice to what requested
* it so it queries the channel and updates accordingly.
*/
if (session->channel) {
ast_queue_control(session->channel, AST_CONTROL_STREAM_TOPOLOGY_CHANGED);
}
} else if (rdata->msg_info.msg->line.status.code != 100) {
} else if (300 <= rdata->msg_info.msg->line.status.code) {
/* The topology change failed, so drop the current pending media state */
ast_sip_session_media_state_reset(session->pending_media_state);
}