]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix SETUP_ACK handling so that we change channels if so requested
authorMatthew Fredrickson <creslin@digium.com>
Thu, 23 Mar 2006 21:44:36 +0000 (21:44 +0000)
committerMatthew Fredrickson <creslin@digium.com>
Thu, 23 Mar 2006 21:44:36 +0000 (21:44 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@14522 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_zap.c

index e584a0a672fa53a4b21fd60ac5ed6c86b6eaeeb9..230465f0e3221ff0601984686b66991ec14a5657 100644 (file)
@@ -9031,15 +9031,19 @@ static void *pri_dchannel(void *vpri)
                                        ast_log(LOG_WARNING, "Received SETUP_ACKNOWLEDGE on unconfigured channel %d/%d span %d\n", 
                                                PRI_SPAN(e->setup_ack.channel), PRI_CHANNEL(e->setup_ack.channel), pri->span);
                                } else {
-                                       ast_mutex_lock(&pri->pvts[chanpos]->lock);
-                                       pri->pvts[chanpos]->setup_ack = 1;
-                                       /* Send any queued digits */
-                                       for (x=0;x<strlen(pri->pvts[chanpos]->dialdest);x++) {
-                                               ast_log(LOG_DEBUG, "Sending pending digit '%c'\n", pri->pvts[chanpos]->dialdest[x]);
-                                               pri_information(pri->pri, pri->pvts[chanpos]->call, 
-                                                       pri->pvts[chanpos]->dialdest[x]);
-                                       }
-                                       ast_mutex_unlock(&pri->pvts[chanpos]->lock);
+                                       chanpos = pri_fixup_principle(pri, chanpos, e->ring.call);
+                                       if (chanpos > -1) {
+                                               ast_mutex_lock(&pri->pvts[chanpos]->lock);
+                                               pri->pvts[chanpos]->setup_ack = 1;
+                                               /* Send any queued digits */
+                                               for (x=0;x<strlen(pri->pvts[chanpos]->dialdest);x++) {
+                                                       ast_log(LOG_DEBUG, "Sending pending digit '%c'\n", pri->pvts[chanpos]->dialdest[x]);
+                                                       pri_information(pri->pri, pri->pvts[chanpos]->call, 
+                                                               pri->pvts[chanpos]->dialdest[x]);
+                                               }
+                                               ast_mutex_unlock(&pri->pvts[chanpos]->lock);
+                                       } else
+                                               ast_log(LOG_WARNING, "Unable to move channel %d!\n", e->setup_ack.channel);
                                }
                                break;
                        case PRI_EVENT_NOTIFY: