]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Only drop duplicate answer frames if the channel is bridged.
authorMatthew Nicholson <mnicholson@digium.com>
Tue, 14 Sep 2010 18:00:01 +0000 (18:00 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Tue, 14 Sep 2010 18:00:01 +0000 (18:00 +0000)
Back in r3710 ast_read() was modified to drop answer frames on channels that were in the UP state.  This modification prevented bridges that were up before the answer from being broken and reestablished by an ANSWER control frame.  That change also prevents pickup of channels called from the ast_dial framework from working properly.  The ast_dial framework expects to see an ANSWER frame after dialing and the pickup code queues one but ast_read() drops it.  This new change only drops ANSWER frames when the channel is bridged, allowing the answer queued by the pickup code to properly pass through ast_read() on to the ast_dial framework.

ABE-2473
(related to issue #2342)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@286679 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/channel.c

index 2d6fb845b05dfc96de275c10a3926d82a9e87e06..bc8ec1755188fb45c1313edb79c2e53688702e06 100644 (file)
@@ -2352,7 +2352,7 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
                                                ast_log(LOG_DEBUG, "Ignoring answer on an inbound call!\n");
                                        ast_frfree(f);
                                        f = &ast_null_frame;
-                               } else if (prestate == AST_STATE_UP) {
+                               } else if (prestate == AST_STATE_UP && ast_bridged_channel(chan)) {
                                        if (option_debug)
                                                ast_log(LOG_DEBUG, "Dropping duplicate answer!\n");
                                        ast_frfree(f);