]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Commit changes for 10.6.0-digiumphones-rc2
authorAsterisk Autobuilder <asteriskteam@digium.com>
Thu, 5 Jul 2012 23:06:32 +0000 (23:06 +0000)
committerAsterisk Autobuilder <asteriskteam@digium.com>
Thu, 5 Jul 2012 23:06:32 +0000 (23:06 +0000)
ASTERISK-19905: r368947
ASTERISK-20040: r369215
ASTERISK-19992: r369437,369558,369580,369627
ASTERISK-19923: r369653
ASTERISK-20008: r369067
ASTERISK-20012: r369044

git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/10.6.0-digiumphones-rc2@369689 65c4cc65-6c06-0410-ace0-fbb531ad65f3

.version
ChangeLog
apps/app_voicemail.c
asterisk-10.6.0-digiumphones-rc1-summary.html [deleted file]
asterisk-10.6.0-digiumphones-rc1-summary.txt [deleted file]
channels/chan_sip.c
channels/chan_skinny.c
channels/sip/include/sip.h
main/features.c

index 23ffeaefd31e9ae58bf09f8e8d5e473f2df7f1cd..fa5703efcf9c8c3d3b7ac449585be00fe5fd5d75 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-10.6.0-digiumphones-rc1
+10.6.0-digiumphones-rc2
index 2c09f43b9ab1020c7094148e6d397f68d00f7df5..1823fc3a22f49439d4a85bb7fc3f660743bc1fe1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,39 @@
+2012-07-06  Asterisk Development Team <asteriskteam@digium.com>
+
+       * Asterisk 10.6.0-digiumphones-rc2 Released.
+
+       * AST-2012-009
+
+       * AST-2012-010
+
+       * AST-2012-011
+
+       * Fix crash on a guest directmedia call
+
+         A sip_pvt may not have relatedpeer set if a call doesn't match up
+         with a peer.  If there is no relatedpeer, there is no direct media
+         ACL to apply, so just return that is is allowed.
+
+         (closes issue ASTERISK-20040)
+       
+       * Fix request routing issue when outboundproxy is used
+
+         Asterisk was incorrectly setting the destination of CANCELs and ACKs
+         for error responses to the URI of the initial INVITE.  This resulted
+         in further requests, such as INVITEs with authentication
+         credentials, to be routed incorrectly.  Instead when these CANCEL or
+         ACKs are to be esnt, we should simply keep the destination the same
+         as what it previously was.  There is no need to alter it any.
+
+         (closes issue ASTERISK-20008)
+       
+       * Fix monitoring calls put in a parking lot
+
+         Fix a regression that was introduced by r366167 which effectively
+         disabled monitoring parked calls.
+
+         (closes issue ASTERISK-20012)
+
 2012-06-12  Asterisk Development Team <asteriskteam@digium.com>
 
        * 10.6.0-digiumphones-rc1 Released.
index 836b576abdc67c64b34f9837fb83eba2b0eb681e..eeae6d554da4c744e8423d20c788fab0b3a691b2 100644 (file)
@@ -1787,25 +1787,28 @@ static void free_user(struct ast_vm_user *vmu)
 static int vm_allocate_dh(struct vm_state *vms, struct ast_vm_user *vmu, int count_msg) {
 
        int arraysize = (vmu->maxmsg > count_msg ? vmu->maxmsg : count_msg);
-       if (!vms->dh_arraysize) {
-               /* initial allocation */
+
+       /* remove old allocation */
+       if (vms->deleted) {
+               ast_free(vms->deleted);
+               vms->deleted = NULL;
+       }
+       if (vms->heard) {
+               ast_free(vms->heard);
+               vms->heard = NULL;
+       }
+       vms->dh_arraysize = 0;
+
+       if (arraysize > 0) {
                if (!(vms->deleted = ast_calloc(arraysize, sizeof(int)))) {
                        return -1;
                }
                if (!(vms->heard = ast_calloc(arraysize, sizeof(int)))) {
+                       ast_free(vms->deleted);
+                       vms->deleted = NULL;
                        return -1;
                }
                vms->dh_arraysize = arraysize;
-       } else if (vms->dh_arraysize < arraysize) {
-               if (!(vms->deleted = ast_realloc(vms->deleted, arraysize * sizeof(int)))) {
-                       return -1;
-               }
-               if (!(vms->heard = ast_realloc(vms->heard, arraysize * sizeof(int)))) {
-                       return -1;
-               }
-               memset(vms->deleted, 0, arraysize * sizeof(int));
-               memset(vms->heard, 0, arraysize * sizeof(int));
-               vms->dh_arraysize = arraysize;
        }
 
        return 0;
@@ -6899,13 +6902,20 @@ static void adsi_message(struct ast_channel *chan, struct vm_state *vms)
                ast_callerid_parse(cid, &name, &num);
                if (!name)
                        name = num;
-       } else
+       } else {
                name = "Unknown Caller";
+       }
 
        /* If deleted, show "undeleted" */
-
-       if (vms->deleted[vms->curmsg])
+#ifdef IMAP_STORAGE
+       ast_mutex_lock(&vms->lock);
+#endif
+       if (vms->deleted[vms->curmsg]) {
                keys[1] = ADSI_KEY_SKT | (ADSI_KEY_APPS + 11);
+       }
+#ifdef IMAP_STORAGE
+       ast_mutex_unlock(&vms->lock);
+#endif
 
        /* Except "Exit" */
        keys[5] = ADSI_KEY_SKT | (ADSI_KEY_APPS + 5);
@@ -6958,8 +6968,15 @@ static void adsi_delete(struct ast_channel *chan, struct vm_state *vms)
        }
 
        /* If deleted, show "undeleted" */
-       if (vms->deleted[vms->curmsg]) 
+#ifdef IMAP_STORAGE
+       ast_mutex_lock(&vms->lock);
+#endif
+       if (vms->deleted[vms->curmsg]) {
                keys[1] = ADSI_KEY_SKT | (ADSI_KEY_APPS + 11);
+       }
+#ifdef IMAP_STORAGE
+       ast_mutex_unlock(&vms->lock);
+#endif
 
        /* Except "Exit" */
        keys[5] = ADSI_KEY_SKT | (ADSI_KEY_APPS + 5);
@@ -8140,8 +8157,12 @@ static int play_message(struct ast_channel *chan, struct ast_vm_user *vmu, struc
 
        if (!res) {
                make_file(vms->fn, sizeof(vms->fn), vms->curdir, vms->curmsg);
+#ifdef IMAP_STORAGE
+               ast_mutex_lock(&vms->lock);
+#endif
                vms->heard[vms->curmsg] = 1;
 #ifdef IMAP_STORAGE
+               ast_mutex_unlock(&vms->lock);
                /*IMAP storage stores any prepended message from a forward
                 * as a separate file from the rest of the message
                 */
@@ -8356,6 +8377,7 @@ static int close_mailbox(struct vm_state *vms, struct ast_vm_user *vmu)
        }
        ast_unlock_path(vms->curdir);
 #else /* defined(IMAP_STORAGE) */
+       ast_mutex_lock(&vms->lock);
        if (vms->deleted) {
                /* Since we now expunge after each delete, deleting in reverse order
                 * ensures that no reordering occurs between each step. */
@@ -8370,12 +8392,18 @@ static int close_mailbox(struct vm_state *vms, struct ast_vm_user *vmu)
 #endif
 
 done:
-       if (vms->deleted && last_msg_idx) {
+       if (vms->deleted) {
                ast_free(vms->deleted);
+               vms->deleted = NULL;
        }
-       if (vms->heard && last_msg_idx) {
+       if (vms->heard) {
                ast_free(vms->heard);
+               vms->heard = NULL;
        }
+       vms->dh_arraysize = 0;
+#ifdef IMAP_STORAGE
+       ast_mutex_unlock(&vms->lock);
+#endif
 
        return 0;
 }
@@ -9470,14 +9498,25 @@ static int vm_instructions_en(struct ast_channel *chan, struct ast_vm_user *vmu,
                                res = ast_play_and_wait(chan, "vm-next");
                        }
                        if (!res) {
-                               if (!vms->deleted[vms->curmsg])
+                               int curmsg_deleted;
+#ifdef IMAP_STORAGE
+                               ast_mutex_lock(&vms->lock);
+#endif
+                               curmsg_deleted = vms->deleted[vms->curmsg];
+#ifdef IMAP_STORAGE
+                               ast_mutex_unlock(&vms->lock);
+#endif
+                               if (!curmsg_deleted) {
                                        res = ast_play_and_wait(chan, "vm-delete");
-                               else
+                               } else {
                                        res = ast_play_and_wait(chan, "vm-undelete");
-                               if (!res)
+                               }
+                               if (!res) {
                                        res = ast_play_and_wait(chan, "vm-toforward");
-                               if (!res)
+                               }
+                               if (!res) {
                                        res = ast_play_and_wait(chan, "vm-savemessage");
+                               }
                        }
                }
                if (!res) {
@@ -10673,6 +10712,7 @@ static int vm_execmain(struct ast_channel *chan, const char *data)
                        }
 
                        vms.starting = 1;
+                       vms.curmsg = 0;
                        break;
                case '3': /* Advanced options */
                        ast_test_suite_event_notify("ADVOPTIONS", "Message: entering advanced options menu");
diff --git a/asterisk-10.6.0-digiumphones-rc1-summary.html b/asterisk-10.6.0-digiumphones-rc1-summary.html
deleted file mode 100644 (file)
index 89ccc04..0000000
+++ /dev/null
@@ -1,642 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Release Summary - asterisk-10.6.0-digiumphones-rc1</title></head>
-<body>
-<h1 align="center"><a name="top">Release Summary</a></h1>
-<h3 align="center">asterisk-10.6.0-digiumphones-rc1</h3>
-<h3 align="center">Date: 2012-06-12</h3>
-<h3 align="center">&lt;asteriskteam@digium.com&gt;</h3>
-<hr/>
-<h2 align="center">Table of Contents</h2>
-<ol>
-   <li><a href="#summary">Summary</a></li>
-   <li><a href="#contributors">Contributors</a></li>
-   <li><a href="#issues">Closed Issues</a></li>
-   <li><a href="#commits">Other Changes</a></li>
-   <li><a href="#diffstat">Diffstat</a></li>
-</ol>
-<hr/>
-<a name="summary"><h2 align="center">Summary</h2></a>
-<center><a href="#top">[Back to Top]</a></center><br/><p>This release includes only bug fixes.  The changes included were made only to address problems that have been identified in this release series.  Users should be able to safely upgrade to this version if this release series is already in use.  Users considering upgrading from a previous release series are strongly encouraged to review the UPGRADE.txt document as well as the CHANGES document for information about upgrading to this release series.</p>
-<p>The data in this summary reflects changes that have been made since the previous release, asterisk-10.5.0-digiumphones.</p>
-<hr/>
-<a name="contributors"><h2 align="center">Contributors</h2></a>
-<center><a href="#top">[Back to Top]</a></center><br/><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release.  For coders, the number is how many of their patches (of any size) were committed into this release.  For testers, the number is the number of times their name was listed as assisting with testing a patch.  Finally, for reporters, the number is the number of issues that they reported that were closed by commits that went into this release.</p>
-<table width="100%" border="0">
-<tr>
-<td width="33%"><h3>Coders</h3></td>
-<td width="33%"><h3>Testers</h3></td>
-<td width="33%"><h3>Reporters</h3></td>
-</tr>
-<tr valign="top">
-<td>
-53 Michael<br/>
-53 rmudgett<br/>
-30 mjordan<br/>
-27 Mark<br/>
-27 Pavel<br/>
-27 Shaun<br/>
-26 Barry<br/>
-26 Corey<br/>
-26 Gunther<br/>
-26 Makoto<br/>
-26 Pawel<br/>
-26 Steve<br/>
-4 qwell<br/>
-2 mmichelson<br/>
-</td>
-<td>
-55 rmudgett<br/>
-53 Michael L. Young<br/>
-53 Thomas Arimont<br/>
-27 Alec Davis<br/>
-27 Chris Maciejewsk<br/>
-27 Damien Wedhorn<br/>
-27 Florian Gilcher<br/>
-27 Jacek<br/>
-27 Jaxon<br/>
-27 mjordan<br/>
-26 alecdavis<br/>
-26 Andrey Solovyev<br/>
-26 Ben Klang<br/>
-26 feyfre<br/>
-26 Maciej Karjewski<br/>
-26 Maciej Krajewski<br/>
-26 Mario<br/>
-26 Pawel Kuzak<br/>
-26 Terry Wilson<br/>
-</td>
-<td>
-8 mjordan<br/>
-4 rmudgett<br/>
-2 elguero<br/>
-2 jamicque<br/>
-2 kobaz<br/>
-2 makoto<br/>
-2 one47<br/>
-1 alecdavis<br/>
-1 aphiaspring87<br/>
-1 awktane<br/>
-1 babak2536<br/>
-1 bjm<br/>
-1 call<br/>
-1 chris-mac<br/>
-1 coreyfarrell<br/>
-1 corruptor<br/>
-1 dalenoll<br/>
-1 dan_lukes<br/>
-1 dcunningham<br/>
-1 deanvesuvio<br/>
-1 evrinoma@gmail.com<br/>
-1 feyfre<br/>
-1 gkelleter<br/>
-1 jacek<br/>
-1 jaxon<br/>
-1 jkroon<br/>
-1 kenshin<br/>
-1 lgfsantos<br/>
-1 mgrobecker<br/>
-1 mkuron<br/>
-1 mmichelson<br/>
-1 mtryfoss<br/>
-1 p_lindheimer<br/>
-1 patrol-cz<br/>
-1 pkuzak<br/>
-1 skade<br/>
-1 slavon<br/>
-1 sruffell<br/>
-1 susu<br/>
-1 tzafrir<br/>
-</td>
-</tr>
-</table>
-<hr/>
-<a name="issues"><h2 align="center">Closed Issues</h2></a>
-<center><a href="#top">[Back to Top]</a></center><br/><p>This is a list of all issues from the issue tracker that were closed by changes that went into this release.</p>
-<h3>Category: Addons/chan_ooh323</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19445">ASTERISK-19445</a>: Incorrect values are specified as length in memcpy and memset<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: makoto<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Applications/app_confbridge</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19471">ASTERISK-19471</a>: ConfBridge does not record anything<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: feyfre<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19641">ASTERISK-19641</a>: ConfBridge app plays conf-placeintoconf message to bridge, and not to joining channel<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: aphiaspring87<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19771">ASTERISK-19771</a>: User is unable to customize sound_leader_has_left<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: pkuzak<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19899">ASTERISK-19899</a>: Confbridge user number announcement segfaults for number > 2<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: skade<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Applications/app_dial</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19511">ASTERISK-19511</a>: Dial I option ignored if dial forked and one fork redirects<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19551">ASTERISK-19551</a>: Dial with Gosub autoservice error message is misleading<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: awktane<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Applications/app_forkcdr</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19164">ASTERISK-19164</a>: ForkCDR with 'e' option to set end time is overzealous<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: one47<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Applications/app_mixmonitor</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19727">ASTERISK-19727</a>: MixMonitor does not work on local channels<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: kobaz<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Applications/app_mp3</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19761">ASTERISK-19761</a>: mp3_read crash<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: chris-mac<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Applications/app_queue</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19511">ASTERISK-19511</a>: Dial I option ignored if dial forked and one fork redirects<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19536">ASTERISK-19536</a>: Queue option ringinuse is ignored<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: p_lindheimer<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Applications/app_stack</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19764">ASTERISK-19764</a>: Infinite loop with autoservice when looking for nonexistant extension label.<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Applications/app_voicemail</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-18243">ASTERISK-18243</a>: VoiceMail application fails to assign some DTMF codes for application exit when using d() option with context<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19876">ASTERISK-19876</a>: app_voicemail: make_email_file() sends emails with localized Date header<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mkuron<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_dahdi</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19671">ASTERISK-19671</a>: Coverity Report: Fix issues for error type REVERSE_NEGATIVE<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19708">ASTERISK-19708</a>: Call Deflection with DAHDISendCallreroutingFacility on EuroISDN not working<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: babak2536<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19842">ASTERISK-19842</a>: POTS flashhook transfer causes deadlock<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368782">368782</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett<br/>
-Coders: qwell<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19854">ASTERISK-19854</a>: freeze channels showing in core show channels<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: jaxon<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_iax2</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19521">ASTERISK-19521</a>: chan_iax2 does not honor trunkfreq config option<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: jkroon<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19597">ASTERISK-19597</a>: Failure to pass NULL data pointer with AST_CONTROL_HOLD frame causes crash when MOH is started<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mgrobecker<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_local</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19537">ASTERISK-19537</a>: Deadlock potential in ast_do_masquerade() because it calls ast_indicate with the channel lock held.<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_sip/General</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-18321">ASTERISK-18321</a>: dynamic_exclude_static option with (temporary) unreachable DNS cause the abend<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: dan_lukes<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19425">ASTERISK-19425</a>: Calls not released after BYE<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: dcunningham<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19455">ASTERISK-19455</a>: SIP channels permanently stuck in system after BYE message received<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: deanvesuvio<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19597">ASTERISK-19597</a>: Failure to pass NULL data pointer with AST_CONTROL_HOLD frame causes crash when MOH is started<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mgrobecker<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19827">ASTERISK-19827</a>: Asterisk crash, whenever mwi => pass:user:authuser@host:port/mailbox is set in sip.conf <br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: kenshin<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19892">ASTERISK-19892</a>: If Asterisk sends a 481 to an initial INVITE that contained a to-tag, then Asterisk will not recognize the ensuing ACK<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368782">368782</a><br/>
-Reporter: mmichelson<br/>
-Testers: rmudgett<br/>
-Coders: qwell<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19914">ASTERISK-19914</a>: Incorrect SIP cause to Asterisk cause mapping in chan_sip<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: patrol-cz<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19919">ASTERISK-19919</a>: Incorrect a=inactive when call changes from SIP_PAGE2_CALL_ONHOLD_INACTIVE to SIP_PAGE2_CALL_ONHOLD_ONEDIR<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mtryfoss<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_sip/IPv6</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19456">ASTERISK-19456</a>: Turn Off Warning Message When Bind Address Is Set To ANY<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: elguero<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Channels/chan_sip/Subscriptions</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-16735">ASTERISK-16735</a>: bad dialog-info remote information<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: jamicque<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-17866">ASTERISK-17866</a>: [patch] MWI last-msgs-sent is mis-reported<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: one47<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_sip/Transfers</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19856">ASTERISK-19856</a>: Transfer is being denied when global allowtransfer=no, ignoring peer setting<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: jacek<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Channels/chan_skinny</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19905">ASTERISK-19905</a>: Security Vulnerability: remotely exploitable crash in chan_skinny if client is disconnected when client is not in on-hook state<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Codecs/codec_dahdi</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19643">ASTERISK-19643</a>: codec_dahdi: Block on frameout if the hardware has enough samples to complete a frame.<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: sruffell<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Core/Channels</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19537">ASTERISK-19537</a>: Deadlock potential in ast_do_masquerade() because it calls ast_indicate with the channel lock held.<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19579">ASTERISK-19579</a>: ERROR we couldn't allocate a port for RTP instance while DAHDI bridgeing<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: jamicque<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Core/General</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-18308">ASTERISK-18308</a>: Problem with batch-creation of astdb entries<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: tzafrir<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19646">ASTERISK-19646</a>: Fix typo \n in chan_sip SDP negotiation warning message<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: slavon<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19755">ASTERISK-19755</a>: __ao2_ref() validates user_data twice<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: gkelleter<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19759">ASTERISK-19759</a>: Missing Payload Type From Events API<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: elguero<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19815">ASTERISK-19815</a>: Crash in core show locks when BETTER_BACKTRACES is enabled<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: kobaz<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Core/PBX</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-16711">ASTERISK-16711</a>: [patch] Exceptionally long queue length queuing to XXXXX<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: alecdavis<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19718">ASTERISK-19718</a>: ast_app_inboxcount2() calls ast_inboxcount2_func without checking if it's assigned (instead checks ast_inboxcount_func)<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: coreyfarrell<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Core/Portability</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19758">ASTERISK-19758</a>: main/asterisk.c rawmemchr() undefined on OpenBSD<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: bjm<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Features</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19383">ASTERISK-19383</a>: Asterisk 1.8.5.0 - atxfer authorization problem when a call returns for reject or no answer<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: lgfsantos<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19445">ASTERISK-19445</a>: Incorrect values are specified as length in memcpy and memset<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: makoto<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19633">ASTERISK-19633</a>: Having any h extension in peer's context breaks unaccepted attended feature transfers<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: corruptor<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19717">ASTERISK-19717</a>: Attended transfer hangup<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: susu<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Features/Parking</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19875">ASTERISK-19875</a>: Behavior change in BLINDTRANSFER variable such that it is not available at the h extension<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: call<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Functions/func_channel</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19911">ASTERISK-19911</a>: echocan_mode not documented<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: dalenoll<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Functions/func_devstate</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19444">ASTERISK-19444</a>: Usage for CLI command 'devstate change' is truncated by an unnecessary comma<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: makoto<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: General</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19462">ASTERISK-19462</a>: asterisk Illegal Instruction (core dumped)<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: evrinoma@gmail.com<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19649">ASTERISK-19649</a>: Coverity Report: Fix issues for error type CONSTANT_EXPRESSION_RESULT<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19650">ASTERISK-19650</a>: Coverity Report: Fix issues for error type FORWARD_NULL<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19654">ASTERISK-19654</a>: Coverity Report: Fix issues for error type NULL_RETURNS<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19656">ASTERISK-19656</a>: Coverity Report: Fix issues for error type ARRAY_VS_SINGLETON<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: mjordan<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19662">ASTERISK-19662</a>: Coverity Report: Fix issues for error type MISSING_BREAK<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mjordan<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Resources/res_adsi</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19445">ASTERISK-19445</a>: Incorrect values are specified as length in memcpy and memset<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: makoto<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Resources/res_agi</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19764">ASTERISK-19764</a>: Infinite loop with autoservice when looking for nonexistant extension label.<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: rmudgett<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Resources/res_crypto</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19445">ASTERISK-19445</a>: Incorrect values are specified as length in memcpy and memset<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365264">365264</a><br/>
-Reporter: makoto<br/>
-Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben Klang, feyfre, Pawel Kuzak<br/>
-Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther<br/>
-<br/>
-<h3>Category: Resources/res_musiconhold</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19597">ASTERISK-19597</a>: Failure to pass NULL data pointer with AST_CONTROL_HOLD frame causes crash when MOH is started<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mgrobecker<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<h3>Category: Resources/res_realtime</h3><br/>
-<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19597">ASTERISK-19597</a>: Failure to pass NULL data pointer with AST_CONTROL_HOLD frame causes crash when MOH is started<br/>
-Revision: <a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368781">368781</a><br/>
-Reporter: mgrobecker<br/>
-Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk, Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon<br/>
-Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel<br/>
-<br/>
-<hr/>
-<a name="commits"><h2 align="center">Commits Not Associated with an Issue</h2></a>
-<center><a href="#top">[Back to Top]</a></center><br/><p>This is a list of all changes that went into this release that did not directly close an issue from the issue tracker.  The commits may have been marked as being related to an issue.  If that is the case, the issue numbers are listed here, as well.</p>
-<table width="100%" border="1">
-<tr><td><b>Revision</b></td><td><b>Author</b></td><td><b>Summary</b></td><td><b>Issues Referenced</b></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365297">365297</a></td><td>mmichelson</td><td>Populate file extensions for mixmonitor recordings properly.</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=365396">365396</a></td><td>qwell</td><td>Add support for folders in MixMonitor 'm' option.  Backport manager actions.</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=367162">367162</a></td><td>mmichelson</td><td>Add "send to voicemail" Digium phone functionality to Asterisk.</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368609">368609</a></td><td>mjordan</td><td>Add feature modifier to versions produced from branches</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368783">368783</a></td><td>qwell</td><td>Fix merge prop.</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368791">368791</a></td><td>mjordan</td><td>Fix deadlock in SIP transfers that involve a REFER request</td>
-<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/10-digiumphones?view=revision&revision=368792">368792</a></td><td>mjordan</td><td>Update merge property info</td>
-<td></td></tr></table>
-<hr/>
-<a name="diffstat"><h2 align="center">Diffstat Results</h2></a>
-<center><a href="#top">[Back to Top]</a></center><br/><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p>
-<pre>
-CHANGES                                    |   16
-UPGRADE.txt                                |    6
-addons/format_mp3.c                        |   83 +--
-addons/ooh323c/src/h323/H323-MESSAGES.h    |    2
-addons/ooh323c/src/h323/H323-MESSAGESEnc.c |   44 -
-addons/ooh323c/src/ooh323.c                |   22
-addons/ooh323c/src/ooq931.c                |    2
-apps/app_chanspy.c                         |   41 -
-apps/app_confbridge.c                      |    8
-apps/app_dial.c                            |  171 ++++--
-apps/app_disa.c                            |    7
-apps/app_followme.c                        |   95 +--
-apps/app_meetme.c                          |   65 +-
-apps/app_minivm.c                          |   10
-apps/app_mixmonitor.c                      |  180 ++++++
-apps/app_page.c                            |    6
-apps/app_queue.c                           |  191 ++++---
-apps/app_record.c                          |    8
-apps/app_stack.c                           |  158 +++--
-apps/app_voicemail.c                       |   88 ++-
-build_tools/make_version                   |   10
-channels/chan_agent.c                      |   18
-channels/chan_dahdi.c                      |   34 -
-channels/chan_iax2.c                       |   96 ++-
-channels/chan_local.c                      |  213 ++++---
-channels/chan_sip.c                        |  786 ++++++++++++++++++-----------
-channels/chan_skinny.c                     |   29 -
-channels/iax2-parser.c                     |    2
-channels/iax2-provision.c                  |    6
-channels/sig_analog.c                      |   17
-channels/sig_pri.c                         |   36 -
-channels/sig_ss7.c                         |   34 -
-channels/sip/config_parser.c               |   91 +--
-channels/sip/include/sip.h                 |    1
-channels/sip/reqresp_parser.c              |  163 +-----
-codecs/codec_dahdi.c                       |   33 +
-funcs/func_aes.c                           |    4
-funcs/func_cdr.c                           |    2
-funcs/func_channel.c                       |   20
-funcs/func_devstate.c                      |    1
-funcs/func_dialgroup.c                     |    1
-funcs/func_lock.c                          |   46 +
-funcs/func_math.c                          |    4
-funcs/func_odbc.c                          |   12
-funcs/func_speex.c                         |   14
-include/asterisk/callerid.h                |    1
-include/asterisk/cel.h                     |    9
-include/asterisk/channel.h                 |    5
-include/asterisk/tcptls.h                  |   17
-main/acl.c                                 |    6
-main/app.c                                 |   13
-main/asterisk.c                            |   13
-main/callerid.c                            |    1
-main/cdr.c                                 |    9
-main/cel.c                                 |   43 +
-main/channel.c                             |  373 +++++++------
-main/cli.c                                 |   10
-main/config.c                              |   18
-main/data.c                                |   22
-main/devicestate.c                         |    2
-main/editline/readline.c                   |    8
-main/editline/term.c                       |   16
-main/editline/tokenizer.c                  |    9
-main/enum.c                                |    3
-main/event.c                               |    3
-main/features.c                            |  348 ++++++------
-main/manager.c                             |   22
-main/netsock2.c                            |    4
-main/pbx.c                                 |   42 -
-main/say.c                                 |    3
-main/tcptls.c                              |   40 +
-main/xmldoc.c                              |   40 -
-pbx/dundi-parser.c                         |   22
-pbx/pbx_config.c                           |   18
-pbx/pbx_dundi.c                            |    2
-res/ael/ael.flex                           |    8
-res/ael/pval.c                             |   21
-res/res_calendar.c                         |   14
-res/res_calendar_caldav.c                  |   13
-res/res_calendar_ews.c                     |    2
-res/res_calendar_exchange.c                |    5
-res/res_calendar_icalendar.c               |    9
-res/res_config_odbc.c                      |    8
-res/res_jabber.c                           |    1
-res/res_monitor.c                          |    4
-res/res_musiconhold.c                      |    2
-res/res_odbc.c                             |    4
-res/res_rtp_asterisk.c                     |    8
-res/res_srtp.c                             |    4
-tests/test_config.c                        |    9
-90 files changed, 2559 insertions(+), 1551 deletions(-)
-</pre><br/>
-<hr/>
-</body>
-</html>
diff --git a/asterisk-10.6.0-digiumphones-rc1-summary.txt b/asterisk-10.6.0-digiumphones-rc1-summary.txt
deleted file mode 100644 (file)
index 0c26c7f..0000000
+++ /dev/null
@@ -1,814 +0,0 @@
-                                Release Summary
-
-                        asterisk-10.6.0-digiumphones-rc1
-
-                                Date: 2012-06-12
-
-                           <asteriskteam@digium.com>
-
-     ----------------------------------------------------------------------
-
-                               Table of Contents
-
-    1. Summary
-    2. Contributors
-    3. Closed Issues
-    4. Other Changes
-    5. Diffstat
-
-     ----------------------------------------------------------------------
-
-                                    Summary
-
-                                 [Back to Top]
-
-   This release includes only bug fixes. The changes included were made only
-   to address problems that have been identified in this release series.
-   Users should be able to safely upgrade to this version if this release
-   series is already in use. Users considering upgrading from a previous
-   release series are strongly encouraged to review the UPGRADE.txt document
-   as well as the CHANGES document for information about upgrading to this
-   release series.
-
-   The data in this summary reflects changes that have been made since the
-   previous release, asterisk-10.5.0-digiumphones.
-
-     ----------------------------------------------------------------------
-
-                                  Contributors
-
-                                 [Back to Top]
-
-   This table lists the people who have submitted code, those that have
-   tested patches, as well as those that reported issues on the issue tracker
-   that were resolved in this release. For coders, the number is how many of
-   their patches (of any size) were committed into this release. For testers,
-   the number is the number of times their name was listed as assisting with
-   testing a patch. Finally, for reporters, the number is the number of
-   issues that they reported that were closed by commits that went into this
-   release.
-
-     Coders                   Testers                  Reporters              
-   53 Michael               55 rmudgett              8 mjordan                
-   53 rmudgett              53 Michael L. Young      4 rmudgett               
-   30 mjordan               53 Thomas Arimont        2 elguero                
-   27 Mark                  27 Alec Davis            2 jamicque               
-   27 Pavel                 27 Chris Maciejewsk      2 kobaz                  
-   27 Shaun                 27 Damien Wedhorn        2 makoto                 
-   26 Barry                 27 Florian Gilcher       2 one47                  
-   26 Corey                 27 Jacek                 1 alecdavis              
-   26 Gunther               27 Jaxon                 1 aphiaspring87          
-   26 Makoto                27 mjordan               1 awktane                
-   26 Pawel                 26 alecdavis             1 babak2536              
-   26 Steve                 26 Andrey Solovyev       1 bjm                    
-   4 qwell                  26 Ben Klang             1 call                   
-   2 mmichelson             26 feyfre                1 chris-mac              
-                            26 Maciej Karjewski      1 coreyfarrell           
-                            26 Maciej Krajewski      1 corruptor              
-                            26 Mario                 1 dalenoll               
-                            26 Pawel Kuzak           1 dan_lukes              
-                            26 Terry Wilson          1 dcunningham            
-                                                     1 deanvesuvio            
-                                                     1 evrinoma@gmail.com     
-                                                     1 feyfre                 
-                                                     1 gkelleter              
-                                                     1 jacek                  
-                                                     1 jaxon                  
-                                                     1 jkroon                 
-                                                     1 kenshin                
-                                                     1 lgfsantos              
-                                                     1 mgrobecker             
-                                                     1 mkuron                 
-                                                     1 mmichelson             
-                                                     1 mtryfoss               
-                                                     1 p_lindheimer           
-                                                     1 patrol-cz              
-                                                     1 pkuzak                 
-                                                     1 skade                  
-                                                     1 slavon                 
-                                                     1 sruffell               
-                                                     1 susu                   
-                                                     1 tzafrir                
-
-     ----------------------------------------------------------------------
-
-                                 Closed Issues
-
-                                 [Back to Top]
-
-   This is a list of all issues from the issue tracker that were closed by
-   changes that went into this release.
-
-  Category: Addons/chan_ooh323
-
-   ASTERISK-19445: Incorrect values are specified as length in memcpy and
-   memset
-   Revision: 365264
-   Reporter: makoto
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Applications/app_confbridge
-
-   ASTERISK-19471: ConfBridge does not record anything
-   Revision: 365264
-   Reporter: feyfre
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19641: ConfBridge app plays conf-placeintoconf message to bridge,
-   and not to joining channel
-   Revision: 365264
-   Reporter: aphiaspring87
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19771: User is unable to customize sound_leader_has_left
-   Revision: 365264
-   Reporter: pkuzak
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19899: Confbridge user number announcement segfaults for number >
-   2
-   Revision: 368781
-   Reporter: skade
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Applications/app_dial
-
-   ASTERISK-19511: Dial I option ignored if dial forked and one fork
-   redirects
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19551: Dial with Gosub autoservice error message is misleading
-   Revision: 365264
-   Reporter: awktane
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Applications/app_forkcdr
-
-   ASTERISK-19164: ForkCDR with 'e' option to set end time is overzealous
-   Revision: 365264
-   Reporter: one47
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Applications/app_mixmonitor
-
-   ASTERISK-19727: MixMonitor does not work on local channels
-   Revision: 365264
-   Reporter: kobaz
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Applications/app_mp3
-
-   ASTERISK-19761: mp3_read crash
-   Revision: 368781
-   Reporter: chris-mac
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Applications/app_queue
-
-   ASTERISK-19511: Dial I option ignored if dial forked and one fork
-   redirects
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19536: Queue option ringinuse is ignored
-   Revision: 365264
-   Reporter: p_lindheimer
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Applications/app_stack
-
-   ASTERISK-19764: Infinite loop with autoservice when looking for
-   nonexistant extension label.
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Applications/app_voicemail
-
-   ASTERISK-18243: VoiceMail application fails to assign some DTMF codes for
-   application exit when using d() option with context
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19876: app_voicemail: make_email_file() sends emails with
-   localized Date header
-   Revision: 368781
-   Reporter: mkuron
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_dahdi
-
-   ASTERISK-19671: Coverity Report: Fix issues for error type
-   REVERSE_NEGATIVE
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19708: Call Deflection with DAHDISendCallreroutingFacility on
-   EuroISDN not working
-   Revision: 365264
-   Reporter: babak2536
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19842: POTS flashhook transfer causes deadlock
-   Revision: 368782
-   Reporter: rmudgett
-   Testers: rmudgett
-   Coders: qwell
-
-   ASTERISK-19854: freeze channels showing in core show channels
-   Revision: 368781
-   Reporter: jaxon
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_iax2
-
-   ASTERISK-19521: chan_iax2 does not honor trunkfreq config option
-   Revision: 365264
-   Reporter: jkroon
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19597: Failure to pass NULL data pointer with AST_CONTROL_HOLD
-   frame causes crash when MOH is started
-   Revision: 368781
-   Reporter: mgrobecker
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_local
-
-   ASTERISK-19537: Deadlock potential in ast_do_masquerade() because it calls
-   ast_indicate with the channel lock held.
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_sip/General
-
-   ASTERISK-18321: dynamic_exclude_static option with (temporary) unreachable
-   DNS cause the abend
-   Revision: 365264
-   Reporter: dan_lukes
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19425: Calls not released after BYE
-   Revision: 368781
-   Reporter: dcunningham
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19455: SIP channels permanently stuck in system after BYE message
-   received
-   Revision: 368781
-   Reporter: deanvesuvio
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19597: Failure to pass NULL data pointer with AST_CONTROL_HOLD
-   frame causes crash when MOH is started
-   Revision: 368781
-   Reporter: mgrobecker
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19827: Asterisk crash, whenever mwi =>
-   pass:user:authuser@host:port/mailbox is set in sip.conf
-   Revision: 368781
-   Reporter: kenshin
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19892: If Asterisk sends a 481 to an initial INVITE that
-   contained a to-tag, then Asterisk will not recognize the ensuing ACK
-   Revision: 368782
-   Reporter: mmichelson
-   Testers: rmudgett
-   Coders: qwell
-
-   ASTERISK-19914: Incorrect SIP cause to Asterisk cause mapping in chan_sip
-   Revision: 368781
-   Reporter: patrol-cz
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19919: Incorrect a=inactive when call changes from
-   SIP_PAGE2_CALL_ONHOLD_INACTIVE to SIP_PAGE2_CALL_ONHOLD_ONEDIR
-   Revision: 368781
-   Reporter: mtryfoss
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_sip/IPv6
-
-   ASTERISK-19456: Turn Off Warning Message When Bind Address Is Set To ANY
-   Revision: 365264
-   Reporter: elguero
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Channels/chan_sip/Subscriptions
-
-   ASTERISK-16735: bad dialog-info remote information
-   Revision: 368781
-   Reporter: jamicque
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-17866: [patch] MWI last-msgs-sent is mis-reported
-   Revision: 368781
-   Reporter: one47
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_sip/Transfers
-
-   ASTERISK-19856: Transfer is being denied when global allowtransfer=no,
-   ignoring peer setting
-   Revision: 368781
-   Reporter: jacek
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Channels/chan_skinny
-
-   ASTERISK-19905: Security Vulnerability: remotely exploitable crash in
-   chan_skinny if client is disconnected when client is not in on-hook state
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Codecs/codec_dahdi
-
-   ASTERISK-19643: codec_dahdi: Block on frameout if the hardware has enough
-   samples to complete a frame.
-   Revision: 368781
-   Reporter: sruffell
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Core/Channels
-
-   ASTERISK-19537: Deadlock potential in ast_do_masquerade() because it calls
-   ast_indicate with the channel lock held.
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19579: ERROR we couldn't allocate a port for RTP instance while
-   DAHDI bridgeing
-   Revision: 365264
-   Reporter: jamicque
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Core/General
-
-   ASTERISK-18308: Problem with batch-creation of astdb entries
-   Revision: 365264
-   Reporter: tzafrir
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19646: Fix typo \n in chan_sip SDP negotiation warning message
-   Revision: 365264
-   Reporter: slavon
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19755: __ao2_ref() validates user_data twice
-   Revision: 365264
-   Reporter: gkelleter
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19759: Missing Payload Type From Events API
-   Revision: 365264
-   Reporter: elguero
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19815: Crash in core show locks when BETTER_BACKTRACES is enabled
-   Revision: 365264
-   Reporter: kobaz
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Core/PBX
-
-   ASTERISK-16711: [patch] Exceptionally long queue length queuing to XXXXX
-   Revision: 368781
-   Reporter: alecdavis
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19718: ast_app_inboxcount2() calls ast_inboxcount2_func without
-   checking if it's assigned (instead checks ast_inboxcount_func)
-   Revision: 365264
-   Reporter: coreyfarrell
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Core/Portability
-
-   ASTERISK-19758: main/asterisk.c rawmemchr() undefined on OpenBSD
-   Revision: 365264
-   Reporter: bjm
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Features
-
-   ASTERISK-19383: Asterisk 1.8.5.0 - atxfer authorization problem when a
-   call returns for reject or no answer
-   Revision: 365264
-   Reporter: lgfsantos
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19445: Incorrect values are specified as length in memcpy and
-   memset
-   Revision: 365264
-   Reporter: makoto
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19633: Having any h extension in peer's context breaks unaccepted
-   attended feature transfers
-   Revision: 365264
-   Reporter: corruptor
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19717: Attended transfer hangup
-   Revision: 365264
-   Reporter: susu
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Features/Parking
-
-   ASTERISK-19875: Behavior change in BLINDTRANSFER variable such that it is
-   not available at the h extension
-   Revision: 368781
-   Reporter: call
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Functions/func_channel
-
-   ASTERISK-19911: echocan_mode not documented
-   Revision: 368781
-   Reporter: dalenoll
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Functions/func_devstate
-
-   ASTERISK-19444: Usage for CLI command 'devstate change' is truncated by an
-   unnecessary comma
-   Revision: 365264
-   Reporter: makoto
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: General
-
-   ASTERISK-19462: asterisk Illegal Instruction (core dumped)
-   Revision: 365264
-   Reporter: evrinoma@gmail.com
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19649: Coverity Report: Fix issues for error type
-   CONSTANT_EXPRESSION_RESULT
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19650: Coverity Report: Fix issues for error type FORWARD_NULL
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19654: Coverity Report: Fix issues for error type NULL_RETURNS
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-   ASTERISK-19656: Coverity Report: Fix issues for error type
-   ARRAY_VS_SINGLETON
-   Revision: 365264
-   Reporter: mjordan
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-   ASTERISK-19662: Coverity Report: Fix issues for error type MISSING_BREAK
-   Revision: 368781
-   Reporter: mjordan
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Resources/res_adsi
-
-   ASTERISK-19445: Incorrect values are specified as length in memcpy and
-   memset
-   Revision: 365264
-   Reporter: makoto
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Resources/res_agi
-
-   ASTERISK-19764: Infinite loop with autoservice when looking for
-   nonexistant extension label.
-   Revision: 368781
-   Reporter: rmudgett
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Resources/res_crypto
-
-   ASTERISK-19445: Incorrect values are specified as length in memcpy and
-   memset
-   Revision: 365264
-   Reporter: makoto
-   Testers: Michael L. Young, Terry Wilson, rmudgett, alecdavis, Maciej
-   Karjewski, Andrey Solovyev, Mario, Thomas Arimont, Maciej Krajewski, Ben
-   Klang, feyfre, Pawel Kuzak
-   Coders: Makoto, Steve, Michael, Barry, rmudgett, Pawel, Corey, Gunther
-
-  Category: Resources/res_musiconhold
-
-   ASTERISK-19597: Failure to pass NULL data pointer with AST_CONTROL_HOLD
-   frame causes crash when MOH is started
-   Revision: 368781
-   Reporter: mgrobecker
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-  Category: Resources/res_realtime
-
-   ASTERISK-19597: Failure to pass NULL data pointer with AST_CONTROL_HOLD
-   frame causes crash when MOH is started
-   Revision: 368781
-   Reporter: mgrobecker
-   Testers: rmudgett, Alec Davis, mjordan, Thomas Arimont, Chris Maciejewsk,
-   Florian Gilcher, Michael L. Young, Jacek, Damien Wedhorn, Jaxon
-   Coders: Mark, Shaun, mjordan, Michael, rmudgett, Pavel
-
-     ----------------------------------------------------------------------
-
-                      Commits Not Associated with an Issue
-
-                                 [Back to Top]
-
-   This is a list of all changes that went into this release that did not
-   directly close an issue from the issue tracker. The commits may have been
-   marked as being related to an issue. If that is the case, the issue
-   numbers are listed here, as well.
-
-   +------------------------------------------------------------------------+
-   | Revision | Author     | Summary                           | Issues     |
-   |          |            |                                   | Referenced |
-   |----------+------------+-----------------------------------+------------|
-   | 365297   | mmichelson | Populate file extensions for      |            |
-   |          |            | mixmonitor recordings properly.   |            |
-   |----------+------------+-----------------------------------+------------|
-   |          |            | Add support for folders in        |            |
-   | 365396   | qwell      | MixMonitor 'm' option. Backport   |            |
-   |          |            | manager actions.                  |            |
-   |----------+------------+-----------------------------------+------------|
-   | 367162   | mmichelson | Add "send to voicemail" Digium    |            |
-   |          |            | phone functionality to Asterisk.  |            |
-   |----------+------------+-----------------------------------+------------|
-   | 368609   | mjordan    | Add feature modifier to versions  |            |
-   |          |            | produced from branches            |            |
-   |----------+------------+-----------------------------------+------------|
-   | 368783   | qwell      | Fix merge prop.                   |            |
-   |----------+------------+-----------------------------------+------------|
-   | 368791   | mjordan    | Fix deadlock in SIP transfers     |            |
-   |          |            | that involve a REFER request      |            |
-   |----------+------------+-----------------------------------+------------|
-   | 368792   | mjordan    | Update merge property info        |            |
-   +------------------------------------------------------------------------+
-
-     ----------------------------------------------------------------------
-
-                                Diffstat Results
-
-                                 [Back to Top]
-
-   This is a summary of the changes to the source code that went into this
-   release that was generated using the diffstat utility.
-
- CHANGES                                    |   16
- UPGRADE.txt                                |    6
- addons/format_mp3.c                        |   83 +--
- addons/ooh323c/src/h323/H323-MESSAGES.h    |    2
- addons/ooh323c/src/h323/H323-MESSAGESEnc.c |   44 -
- addons/ooh323c/src/ooh323.c                |   22
- addons/ooh323c/src/ooq931.c                |    2
- apps/app_chanspy.c                         |   41 -
- apps/app_confbridge.c                      |    8
- apps/app_dial.c                            |  171 ++++--
- apps/app_disa.c                            |    7
- apps/app_followme.c                        |   95 +--
- apps/app_meetme.c                          |   65 +-
- apps/app_minivm.c                          |   10
- apps/app_mixmonitor.c                      |  180 ++++++
- apps/app_page.c                            |    6
- apps/app_queue.c                           |  191 ++++---
- apps/app_record.c                          |    8
- apps/app_stack.c                           |  158 +++--
- apps/app_voicemail.c                       |   88 ++-
- build_tools/make_version                   |   10
- channels/chan_agent.c                      |   18
- channels/chan_dahdi.c                      |   34 -
- channels/chan_iax2.c                       |   96 ++-
- channels/chan_local.c                      |  213 ++++---
- channels/chan_sip.c                        |  786 ++++++++++++++++++-----------
- channels/chan_skinny.c                     |   29 -
- channels/iax2-parser.c                     |    2
- channels/iax2-provision.c                  |    6
- channels/sig_analog.c                      |   17
- channels/sig_pri.c                         |   36 -
- channels/sig_ss7.c                         |   34 -
- channels/sip/config_parser.c               |   91 +--
- channels/sip/include/sip.h                 |    1
- channels/sip/reqresp_parser.c              |  163 +-----
- codecs/codec_dahdi.c                       |   33 +
- funcs/func_aes.c                           |    4
- funcs/func_cdr.c                           |    2
- funcs/func_channel.c                       |   20
- funcs/func_devstate.c                      |    1
- funcs/func_dialgroup.c                     |    1
- funcs/func_lock.c                          |   46 +
- funcs/func_math.c                          |    4
- funcs/func_odbc.c                          |   12
- funcs/func_speex.c                         |   14
- include/asterisk/callerid.h                |    1
- include/asterisk/cel.h                     |    9
- include/asterisk/channel.h                 |    5
- include/asterisk/tcptls.h                  |   17
- main/acl.c                                 |    6
- main/app.c                                 |   13
- main/asterisk.c                            |   13
- main/callerid.c                            |    1
- main/cdr.c                                 |    9
- main/cel.c                                 |   43 +
- main/channel.c                             |  373 +++++++------
- main/cli.c                                 |   10
- main/config.c                              |   18
- main/data.c                                |   22
- main/devicestate.c                         |    2
- main/editline/readline.c                   |    8
- main/editline/term.c                       |   16
- main/editline/tokenizer.c                  |    9
- main/enum.c                                |    3
- main/event.c                               |    3
- main/features.c                            |  348 ++++++------
- main/manager.c                             |   22
- main/netsock2.c                            |    4
- main/pbx.c                                 |   42 -
- main/say.c                                 |    3
- main/tcptls.c                              |   40 +
- main/xmldoc.c                              |   40 -
- pbx/dundi-parser.c                         |   22
- pbx/pbx_config.c                           |   18
- pbx/pbx_dundi.c                            |    2
- res/ael/ael.flex                           |    8
- res/ael/pval.c                             |   21
- res/res_calendar.c                         |   14
- res/res_calendar_caldav.c                  |   13
- res/res_calendar_ews.c                     |    2
- res/res_calendar_exchange.c                |    5
- res/res_calendar_icalendar.c               |    9
- res/res_config_odbc.c                      |    8
- res/res_jabber.c                           |    1
- res/res_monitor.c                          |    4
- res/res_musiconhold.c                      |    2
- res/res_odbc.c                             |    4
- res/res_rtp_asterisk.c                     |    8
- res/res_srtp.c                             |    4
- tests/test_config.c                        |    9
- 90 files changed, 2559 insertions(+), 1551 deletions(-)
-
-     ----------------------------------------------------------------------
index de0b958b1e0b2b433c45b60133258c7c6348e2dd..8667817a3744512a966308cfd3bed9c995c2138c 100644 (file)
@@ -3897,7 +3897,7 @@ static int __sip_autodestruct(const void *data)
                        ast_debug(3, "Re-scheduled destruction of SIP call %s\n", p->callid ? p->callid : "<unknown>");
                        append_history(p, "ReliableXmit", "timeout");
                        if (sscanf(p->lastmsg, "Tx: %30s", method_str) == 1 || sscanf(p->lastmsg, "Rx: %30s", method_str) == 1) {
-                               if (method_match(SIP_CANCEL, method_str) || method_match(SIP_BYE, method_str)) {
+                               if (p->ongoing_reinvite || method_match(SIP_CANCEL, method_str) || method_match(SIP_BYE, method_str)) {
                                        pvt_set_needdestroy(p, "autodestruct");
                                }
                        }
@@ -6293,6 +6293,21 @@ const char *hangup_cause2sip(int cause)
        return 0;
 }
 
+static int reinvite_timeout(const void *data)
+{
+       struct sip_pvt *dialog = (struct sip_pvt *) data;
+       struct ast_channel *owner = sip_pvt_lock_full(dialog);
+       dialog->reinviteid = -1;
+       check_pendings(dialog);
+       if (owner) {
+               ast_channel_unlock(owner);
+               ast_channel_unref(owner);
+       }
+       ao2_unlock(dialog);
+       dialog_unref(dialog, "unref for reinvite timeout");
+       return 0;
+}
+
 /*! \brief  sip_hangup: Hangup SIP call
  * Part of PBX interface, called from ast_hangup */
 static int sip_hangup(struct ast_channel *ast)
@@ -6487,8 +6502,16 @@ static int sip_hangup(struct ast_channel *ast)
                                ast_set_flag(&p->flags[0], SIP_PENDINGBYE);     
                                ast_clear_flag(&p->flags[0], SIP_NEEDREINVITE); 
                                AST_SCHED_DEL_UNREF(sched, p->waitid, dialog_unref(p, "when you delete the waitid sched, you should dec the refcount for the stored dialog ptr"));
-                               if (sip_cancel_destroy(p))
+                               if (sip_cancel_destroy(p)) {
                                        ast_log(LOG_WARNING, "Unable to cancel SIP destruction.  Expect bad things.\n");
+                               }
+                               /* If we have an ongoing reinvite, there is a chance that we have gotten a provisional
+                                * response, but something weird has happened and we will never receive a final response.
+                                * So, just in case, check for pending actions after a bit of time to trigger the pending
+                                * bye that we are setting above */
+                               if (p->ongoing_reinvite && p->reinviteid < 0) {
+                                       p->reinviteid = ast_sched_add(sched, 32 * p->timer_t1, reinvite_timeout, dialog_ref(p, "ref for reinvite_timeout"));
+                               }
                        }
                }
        }
@@ -7871,6 +7894,7 @@ struct sip_pvt *sip_alloc(ast_string_field callid, struct ast_sockaddr *addr,
        p->method = intended_method;
        p->initid = -1;
        p->waitid = -1;
+       p->reinviteid = -1;
        p->autokillid = -1;
        p->request_queue_sched_id = -1;
        p->provisional_keepalive_sched_id = -1;
@@ -10737,10 +10761,9 @@ static int reqprep(struct sip_request *req, struct sip_pvt *p, int sipmethod, ui
         * final response. For a CANCEL or ACK, we have to send to the same destination
         * as the original INVITE.
         */
-       if (sipmethod == SIP_CANCEL ||
-                       (sipmethod == SIP_ACK && (p->invitestate == INV_COMPLETED || p->invitestate == INV_CANCELLED))) {
-               set_destination(p, ast_strdupa(p->uri));
-       } else if (p->route) {
+       if (p->route &&
+                       !(sipmethod == SIP_CANCEL ||
+                               (sipmethod == SIP_ACK && (p->invitestate == INV_COMPLETED || p->invitestate == INV_CANCELLED)))) {
                set_destination(p, p->route->hop);
                add_route(req, is_strict ? p->route->next : p->route);
        }
@@ -12358,7 +12381,7 @@ static int transmit_reinvite_with_sdp(struct sip_pvt *p, int t38version, int old
        initialize_initreq(p, &req);
        p->lastinvite = p->ocseq;
        ast_set_flag(&p->flags[0], SIP_OUTGOING);       /* Change direction of this dialog */
-
+       p->ongoing_reinvite = 1;
        return send_request(p, &req, XMIT_CRITICAL, p->ocseq);
 }
 
@@ -20587,8 +20610,11 @@ static void parse_moved_contact(struct sip_pvt *p, struct sip_request *req, char
 static void check_pendings(struct sip_pvt *p)
 {
        if (ast_test_flag(&p->flags[0], SIP_PENDINGBYE)) {
-               /* if we can't BYE, then this is really a pending CANCEL */
-               if (p->invitestate == INV_PROCEEDING || p->invitestate == INV_EARLY_MEDIA) {
+               if (p->reinviteid > -1) {
+                       /* Outstanding p->reinviteid timeout, so wait... */
+                       return;
+               } else if (p->invitestate == INV_PROCEEDING || p->invitestate == INV_EARLY_MEDIA) {
+                       /* if we can't BYE, then this is really a pending CANCEL */
                        p->invitestate = INV_CANCELLED;
                        transmit_request(p, SIP_CANCEL, p->lastinvite, XMIT_RELIABLE, FALSE);
                        /* If the cancel occurred on an initial invite, cancel the pending BYE */
@@ -20599,8 +20625,9 @@ static void check_pendings(struct sip_pvt *p)
                           INVITE, but do set an autodestruct just in case we never get it. */
                } else {
                        /* We have a pending outbound invite, don't send something
-                               new in-transaction */
-                       if (p->pendinginvite)
+                        * new in-transaction, unless it is a pending reinvite, then
+                        * by the time we are called here, we should probably just hang up. */
+                       if (p->pendinginvite && !p->ongoing_reinvite)
                                return;
 
                        if (p->owner) {
@@ -20810,9 +20837,17 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
        if (resp >= 300 && (p->invitestate == INV_CALLING || p->invitestate == INV_PROCEEDING || p->invitestate == INV_EARLY_MEDIA ))
                p->invitestate = INV_COMPLETED;
        
+       if ((resp >= 200 && reinvite)) {
+               p->ongoing_reinvite = 0;
+               if (p->reinviteid > -1) {
+                       AST_SCHED_DEL_UNREF(sched, p->reinviteid, dialog_unref(p, "unref dialog for reinvite timeout because of a final response"));
+               }
+       }
+
        /* Final response, clear out pending invite */
-       if ((resp == 200 || resp >= 300) && p->pendinginvite && seqno == p->pendinginvite)
+       if ((resp == 200 || resp >= 300) && p->pendinginvite && seqno == p->pendinginvite) {
                p->pendinginvite = 0;
+       }
 
        /* If this is a response to our initial INVITE, we need to set what we can use
         * for this peer.
@@ -30216,6 +30251,12 @@ static int apply_directmedia_ha(struct sip_pvt *p1, struct sip_pvt *p2, const ch
        ast_rtp_instance_get_remote_address(p1->rtp, &them);
        ast_rtp_instance_get_local_address(p1->rtp, &us);
 
+       /* If p2 is a guest call, there will be no peer. If there is no peer, there
+        * is no directmediaha, so go ahead and allow it */
+       if (!p2->relatedpeer) {
+               return res;
+       }
+
        if ((res = ast_apply_ha(p2->relatedpeer->directmediaha, &them)) == AST_SENSE_DENY) {
                const char *us_addr = ast_strdupa(ast_sockaddr_stringify(&us));
                const char *them_addr = ast_strdupa(ast_sockaddr_stringify(&them));
index 6d5557cd0a808d6f5a25cfb942430f73989f61fa..e3e3830e800b79feb6e16c91c4adec2e1b254e89 100644 (file)
@@ -4982,6 +4982,11 @@ static void setsubstate(struct skinny_subchannel *sub, int state)
        pthread_t t;
        int actualstate = state;
 
+       if (!l->device) {
+               ast_log(LOG_WARNING, "Device for line %s is not registered.\n", l->name);
+               return;
+       }
+
        if (sub->substate == SUBSTATE_ONHOOK) {
                return;
        }
@@ -5374,15 +5379,20 @@ static void dumpsub(struct skinny_subchannel *sub, int forcehangup)
        struct skinny_subchannel *activatesub = NULL;
        struct skinny_subchannel *tsub;
 
+       if (!l->device) {
+               ast_log(LOG_WARNING, "Device for line %s is not registered.\n", l->name);
+               return;
+       }
+
        if (skinnydebug) {
                ast_verb(3, "Sub %d - Dumping\n", sub->callid);
        }
-       
+
        if (!forcehangup && sub->substate == SUBSTATE_HOLD) {
                l->activesub = NULL;
                return;
        }
-       
+
        if (sub == l->activesub) {
                d->hookstate = SKINNY_ONHOOK;
                transmit_speaker_mode(d, SKINNY_SPEAKEROFF); 
index a6cf8a425b41aa087f3fe33d84316256585216e6..2462f0de562887a577beae2655f5de07d71b79b9 100644 (file)
@@ -1101,6 +1101,7 @@ struct sip_pvt {
        struct sip_auth_container *peerauth;/*!< Realm authentication credentials */
        int noncecount;                     /*!< Nonce-count */
        unsigned int stalenonce:1;          /*!< Marks the current nonce as responded too */
+       unsigned int ongoing_reinvite:1;    /*!< There is a reinvite in progress that might need to be cleaned up */
        char lastmsg[256];                  /*!< Last Message sent/received */
        int amaflags;                       /*!< AMA Flags */
        uint32_t pendinginvite; /*!< Any pending INVITE or state NOTIFY (in subscribe pvt's) ? (seqno of this) */
@@ -1113,6 +1114,7 @@ struct sip_pvt {
 
        int initid;                         /*!< Auto-congest ID if appropriate (scheduler) */
        int waitid;                         /*!< Wait ID for scheduler after 491 or other delays */
+       int reinviteid;                     /*!< Reinvite in case of provisional, but no final response */
        int autokillid;                     /*!< Auto-kill ID (scheduler) */
        int t38id;                          /*!< T.38 Response ID */
        struct sip_refer *refer;            /*!< REFER: SIP transfer data structure */
index 6dfb33e623ef1db81ef5b9635a3b34b2cf1a51e5..f381eeb1624728e9b251dd03a5d5b04afa9a0a71 100644 (file)
@@ -4631,7 +4631,6 @@ static int manage_parked_call(struct parkeduser *pu, const struct pollfd *pfds,
        struct ast_channel *chan = pu->chan;    /* shorthand */
        int tms;        /* timeout for this item */
        int x;          /* fd index in channel */
-       int parking_complete = 0;
 
        tms = ast_tvdiff_ms(ast_tvnow(), pu->start);
        if (tms > pu->parkingtime) {
@@ -4746,104 +4745,103 @@ static int manage_parked_call(struct parkeduser *pu, const struct pollfd *pfds,
                }
 
                /* And take them out of the parking lot */
-               parking_complete = 1;
-       } else {        /* still within parking time, process descriptors */
-               x = 0;
-               if (pfds) {
-                       for (; x < AST_MAX_FDS; x++) {
-                               struct ast_frame *f;
-                               int y;
-
-                               if (chan->fds[x] == -1) {
-                                       continue;       /* nothing on this descriptor */
-                               }
+               return 1;
+       }
 
-                               for (y = 0; y < nfds; y++) {
-                                       if (pfds[y].fd == chan->fds[x]) {
-                                               /* Found poll record! */
-                                               break;
-                                       }
-                               }
-                               if (y == nfds) {
-                                       /* Not found */
-                                       continue;
-                               }
+       /* still within parking time, process descriptors */
+       if (pfds) {
+               for (x = 0; x < AST_MAX_FDS; x++) {
+                       struct ast_frame *f;
+                       int y;
 
-                               if (!(pfds[y].revents & (POLLIN | POLLERR | POLLPRI))) {
-                                       /* Next x */
-                                       continue;
-                               }
+                       if (chan->fds[x] == -1) {
+                               continue;       /* nothing on this descriptor */
+                       }
 
-                               if (pfds[y].revents & POLLPRI) {
-                                       ast_set_flag(chan, AST_FLAG_EXCEPTION);
-                               } else {
-                                       ast_clear_flag(chan, AST_FLAG_EXCEPTION);
+                       for (y = 0; y < nfds; y++) {
+                               if (pfds[y].fd == chan->fds[x]) {
+                                       /* Found poll record! */
+                                       break;
                                }
-                               chan->fdno = x;
-
-                               /* See if they need servicing */
-                               f = ast_read(pu->chan);
-                               /* Hangup? */
-                               if (!f || (f->frametype == AST_FRAME_CONTROL
-                                       && f->subclass.integer == AST_CONTROL_HANGUP)) {
-                                       if (f) {
-                                               ast_frfree(f);
-                                       }
-                                       post_manager_event("ParkedCallGiveUp", pu);
-                                       ast_cel_report_event(pu->chan, AST_CEL_PARK_END, NULL, "ParkedCallGiveUp",
-                                               NULL);
+                       }
+                       if (y == nfds) {
+                               /* Not found */
+                               continue;
+                       }
 
-                                       /* There's a problem, hang them up */
-                                       ast_verb(2, "%s got tired of being parked\n", chan->name);
-                                       ast_hangup(chan);
+                       if (!(pfds[y].revents & (POLLIN | POLLERR | POLLPRI))) {
+                               /* Next x */
+                               continue;
+                       }
 
-                                       /* And take them out of the parking lot */
-                                       parking_complete = 1;
-                                       break;
-                               } else {
-                                       /* XXX Maybe we could do something with packets, like dial "0" for operator or something XXX */
+                       if (pfds[y].revents & POLLPRI) {
+                               ast_set_flag(chan, AST_FLAG_EXCEPTION);
+                       } else {
+                               ast_clear_flag(chan, AST_FLAG_EXCEPTION);
+                       }
+                       chan->fdno = x;
+
+                       /* See if they need servicing */
+                       f = ast_read(pu->chan);
+                       /* Hangup? */
+                       if (!f || (f->frametype == AST_FRAME_CONTROL
+                               && f->subclass.integer == AST_CONTROL_HANGUP)) {
+                               if (f) {
                                        ast_frfree(f);
-                                       if (pu->hold_method == AST_CONTROL_HOLD
-                                               && pu->moh_trys < 3
-                                               && !chan->generatordata) {
-                                               ast_debug(1,
-                                                       "MOH on parked call stopped by outside source.  Restarting on channel %s.\n",
-                                                       chan->name);
-                                               ast_indicate_data(chan, AST_CONTROL_HOLD,
-                                                       S_OR(pu->parkinglot->cfg.mohclass, NULL),
-                                                       (!ast_strlen_zero(pu->parkinglot->cfg.mohclass)
-                                                               ? strlen(pu->parkinglot->cfg.mohclass) + 1 : 0));
-                                               pu->moh_trys++;
-                                       }
-                                       goto std;       /* XXX Ick: jumping into an else statement??? XXX */
                                }
-                       } /* End for */
-               }
-               if (x >= AST_MAX_FDS) {
-std:
-                       for (x = 0; x < AST_MAX_FDS; x++) {     /* mark fds for next round */
-                               if (chan->fds[x] > -1) {
-                                       void *tmp = ast_realloc(*new_pfds,
-                                               (*new_nfds + 1) * sizeof(struct pollfd));
+                               post_manager_event("ParkedCallGiveUp", pu);
+                               ast_cel_report_event(pu->chan, AST_CEL_PARK_END, NULL, "ParkedCallGiveUp",
+                                       NULL);
 
-                                       if (!tmp) {
-                                               continue;
-                                       }
-                                       *new_pfds = tmp;
-                                       (*new_pfds)[*new_nfds].fd = chan->fds[x];
-                                       (*new_pfds)[*new_nfds].events = POLLIN | POLLERR | POLLPRI;
-                                       (*new_pfds)[*new_nfds].revents = 0;
-                                       (*new_nfds)++;
+                               /* There's a problem, hang them up */
+                               ast_verb(2, "%s got tired of being parked\n", chan->name);
+                               ast_hangup(chan);
+
+                               /* And take them out of the parking lot */
+                               return 1;
+                       } else {
+                               /* XXX Maybe we could do something with packets, like dial "0" for operator or something XXX */
+                               ast_frfree(f);
+                               if (pu->hold_method == AST_CONTROL_HOLD
+                                       && pu->moh_trys < 3
+                                       && !chan->generatordata) {
+                                       ast_debug(1,
+                                               "MOH on parked call stopped by outside source.  Restarting on channel %s.\n",
+                                               chan->name);
+                                       ast_indicate_data(chan, AST_CONTROL_HOLD,
+                                               S_OR(pu->parkinglot->cfg.mohclass, NULL),
+                                               (!ast_strlen_zero(pu->parkinglot->cfg.mohclass)
+                                                       ? strlen(pu->parkinglot->cfg.mohclass) + 1 : 0));
+                                       pu->moh_trys++;
                                }
+                               break;
                        }
-                       /* Keep track of our shortest wait */
-                       if (tms < *ms || *ms < 0) {
-                               *ms = tms;
+               } /* End for */
+       }
+
+       /* mark fds for next round */
+       for (x = 0; x < AST_MAX_FDS; x++) {
+               if (chan->fds[x] > -1) {
+                       void *tmp = ast_realloc(*new_pfds,
+                               (*new_nfds + 1) * sizeof(struct pollfd));
+
+                       if (!tmp) {
+                               continue;
                        }
+                       *new_pfds = tmp;
+                       (*new_pfds)[*new_nfds].fd = chan->fds[x];
+                       (*new_pfds)[*new_nfds].events = POLLIN | POLLERR | POLLPRI;
+                       (*new_pfds)[*new_nfds].revents = 0;
+                       (*new_nfds)++;
                }
        }
+       /* Keep track of our shortest wait */
+       if (tms < *ms || *ms < 0) {
+               *ms = tms;
+       }
 
-       return parking_complete;
+       /* Stay in the parking lot. */
+       return 0;
 }
 
 /*! \brief Run management on parkinglots, called once per parkinglot */