From: George Joseph Date: Tue, 19 Sep 2017 10:44:28 +0000 (-0600) Subject: chan_pjsip: Ignore AST_CONTROL_STREAM_TOPOLOGY_CHANGED for now X-Git-Tag: 15.1.0-rc1~62^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86b897f877d729f8350d15341f098a53d8172aa8;p=thirdparty%2Fasterisk.git chan_pjsip: Ignore AST_CONTROL_STREAM_TOPOLOGY_CHANGED for now chan_pjsip_indicate was missing a case for the recently added AST_CONTROL_STREAM_TOPOLOGY_CHANGED condition and was returning an error and causing the call to be hung up instead of just ignoring it. ASTERISK-27260 Reported by: Daniel Heckl Change-Id: I4fecbb00a0b8a853da85155065c1a6bddf235e80 --- diff --git a/channels/chan_pjsip.c b/channels/chan_pjsip.c index 841654c927..84b508b611 100644 --- a/channels/chan_pjsip.c +++ b/channels/chan_pjsip.c @@ -1738,6 +1738,8 @@ static int chan_pjsip_indicate(struct ast_channel *ast, int condition, const voi topology = data; res = handle_topology_request_change(channel->session, topology); break; + case AST_CONTROL_STREAM_TOPOLOGY_CHANGED: + break; case -1: res = -1; break;