]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 339086 via svnmerge from
authorTerry Wilson <twilson@digium.com>
Mon, 3 Oct 2011 18:44:27 +0000 (18:44 +0000)
committerTerry Wilson <twilson@digium.com>
Mon, 3 Oct 2011 18:44:27 +0000 (18:44 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r339086 | twilson | 2011-10-03 11:40:52 -0700 (Mon, 03 Oct 2011) | 10 lines

  Properly ignore AST_CONTROL_UPDATE_RTP_PEER in more places

  After the change in r336294, the new AST_CONTROL_UPDATE_RTP_PEER frame
  is sent when a re-invite happens. If we receive a re-invite from a device
  the waitstream_core was not aware of the new control frame and would drop
  the call.

  (closes issue ASTERISK-18610)
   Reported by: Kristijan_Vrban
........

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

channels/chan_sip.c
main/file.c

index 4f22c64326d4b58ea36e5e9f64c41da5ac8b1ad1..f9f1b3301e9c38acc664aedecb7ce3e55e14926b 100644 (file)
@@ -6825,6 +6825,8 @@ static int sip_indicate(struct ast_channel *ast, int condition, const void *data
                        ast_aoc_destroy_decoded(decoded);
                }
                break;
+       case AST_CONTROL_UPDATE_RTP_PEER: /* Absorb this since it is handled by the bridge */
+               break;
        case -1:
                res = -1;
                break;
index f1e59038538fe257d45e27703d926954554567e1..d7073860346fa71c142e7b835c58ba6c90295805 100644 (file)
@@ -1345,6 +1345,7 @@ static int waitstream_core(struct ast_channel *c, const char *breakon,
                                case AST_CONTROL_CONNECTED_LINE:
                                case AST_CONTROL_REDIRECTING:
                                case AST_CONTROL_AOC:
+                               case AST_CONTROL_UPDATE_RTP_PEER:
                                case -1:
                                        /* Unimportant */
                                        break;