]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
automerge commit
authorAutomerge script <automerge@asterisk.org>
Mon, 12 Jun 2006 16:04:02 +0000 (16:04 +0000)
committerAutomerge script <automerge@asterisk.org>
Mon, 12 Jun 2006 16:04:02 +0000 (16:04 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@33642 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_local.c
res/res_agi.c

index 14ef083f64a270d108656c8b95099498fba0612a..8dc46033ccd1dbf4f5b48c35943dcca53f1f661f 100644 (file)
@@ -186,7 +186,13 @@ static void check_bridge(struct local_pvt *p, int isoutbound)
                return;
        if (!p->chan || !p->owner)
                return;
-       if (isoutbound&& p->chan->_bridge /* Not ast_bridged_channel!  Only go one step! */ && !p->owner->readq) {
+
+       /* only do the masquerade if we are being called on the outbound channel,
+          if it has been bridged to another channel and if there are no pending
+          frames on the owner channel (because they would be transferred to the
+          outbound channel during the masquerade)
+       */
+       if (isoutbound && p->chan->_bridge /* Not ast_bridged_channel!  Only go one step! */ && !p->owner->readq) {
                /* Masquerade bridged channel into owner */
                /* Lock everything we need, one by one, and give up if
                   we can't get everything.  Remember, we'll get another
@@ -203,6 +209,11 @@ static void check_bridge(struct local_pvt *p, int isoutbound)
                                ast_mutex_unlock(&(p->chan->_bridge)->lock);
                        }
                }
+       /* We only allow masquerading in one 'direction'... it's important to preserve the state
+          (group variables, etc.) that live on p->chan->_bridge (and were put there by the dialplan)
+          when the local channels go away.
+       */
+#if 0
        } else if (!isoutbound && p->owner && p->owner->_bridge && p->chan && !p->chan->readq) {
                /* Masquerade bridged channel into chan */
                if (!ast_mutex_trylock(&(p->owner->_bridge)->lock)) {
@@ -217,6 +228,7 @@ static void check_bridge(struct local_pvt *p, int isoutbound)
                        }
                        ast_mutex_unlock(&(p->owner->_bridge)->lock);
                }
+#endif
        }
 }
 
index ddfabb3574b090e5bce39f6d84963ff093d46345..5d2a029e198bfd1e3b2265e8c9a928afbf604011 100644 (file)
@@ -282,6 +282,9 @@ static int launch_script(char *script, char *argv[], int *fds, int *efd, int *op
                return -1;
        }
        if (!pid) {
+               /* Don't run AGI scripts with realtime priority -- it causes audio stutter */
+               ast_set_priority(0);
+
                /* Redirect stdin and out, provide enhanced audio channel if desired */
                dup2(fromast[0], STDIN_FILENO);
                dup2(toast[1], STDOUT_FILENO);
@@ -301,9 +304,6 @@ static int launch_script(char *script, char *argv[], int *fds, int *efd, int *op
                for (x=STDERR_FILENO + 2;x<1024;x++) 
                        close(x);
 
-               /* Don't run AGI scripts with realtime priority -- it causes audio stutter */
-               ast_set_priority(0);
-
                /* Execute script */
                execv(script, argv);
                /* Can't use ast_log since FD's are closed */