Compare commits

...

12 Commits

Author SHA1 Message Date
Asterisk Autobuilder
e73993c675 Importing release summary for 1.8.9.3 release.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.3@356570 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-23 23:33:44 +00:00
Matthew Jordan
595fffeaa0 Merge 355732, 356475 for 1.8.9.3
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.3@356568 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-23 23:30:47 +00:00
Matthew Jordan
691650dc19 Create tag for 1.8.9.3
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.3@356566 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-23 22:43:58 +00:00
Asterisk Autobuilder
2301137a1a Importing release summary for 1.8.9.2 release.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.2@354653 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-09 19:25:45 +00:00
Matthew Jordan
fc5bbd49d1 Committing r354495, 354542, 354547 for 1.8.9.2
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.2@354641 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-09 19:12:53 +00:00
Matthew Jordan
c922f2d636 Create tag for 1.8.9.2
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.2@354575 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-09 17:26:12 +00:00
Asterisk Autobuilder
4e02eb640c Importing release summary for 1.8.9.1 release.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354277 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-07 15:48:42 +00:00
Jason Parker
51ced73126 Add .lastclean
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354276 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-07 15:47:17 +00:00
Jason Parker
5585f1391e Remove old summary files.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354213 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-06 21:46:49 +00:00
Asterisk Autobuilder
749814d4e4 Importing release summary for 1.8.9.1 release.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354212 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-06 21:43:49 +00:00
Jason Parker
36f22d86bf Update .version and ChangeLog. Merge fixes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354210 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-06 21:40:37 +00:00
Jason Parker
f3c8b03e8a Create tag for Asterisk 1.8.9.1
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.8.9.1@354203 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-02-06 21:25:34 +00:00
10 changed files with 722 additions and 1278 deletions

3
.lastclean Normal file
View File

@@ -0,0 +1,3 @@
39

View File

@@ -1 +1 @@
1.8.9.0
1.8.9.3

View File

@@ -1,3 +1,101 @@
2012-02-23 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 1.8.9.3 Released.
* channels/chan_sip.c: Fix ACK routing for non-2xx responses.
When we send an ACK for a 2xx response to an INVITE, we are supposed
to use the learned route set. However, when we receive a non-2xx
final response to an INVITE, we are supposed to send the ACK to the
same place we initially sent the INVITE.
We had been doing this up until the changes went in that would build
a route set from provisional responses. That introduced a regression
where we would use the learned route set under all circumstances.
With this change, we now will set the destination of our ACK based on
the invitestate. If it is INV_COMPLETED then that means that we have
received a non-2xx final response (INV_TERMINATED indicates a 2xx
response was received). If it is INV_CANCELLED, then that means the
call is being canceled, which means that we should be ACKing a 487
response.
The other change introduced here is setting the invitestate to
INV_CONFIRMED when we send an ACK *after* the reqprep instead of
before. This way, we can tell in reqprep more easily what the
invitestate is prior to sending the ACK.
(closes issue ASTERISK-19389)
reported by Karsten Wemheuer
patches:
ASTERISK-19389v2.patch uploaded by Mark Michelson (license #5049)
* channels/chan_sip.c: Fix regressions with regards to route-set
creation on early dialogs.
This fixes two main issues:
1. Asterisk would send a CANCEL to the route created by the provisional
response instead of using the same destination it did in the initial
INVITE.
2. If a new route set arrives in a 200 OK than was in the 1XX response
(perfectly possible if our outbound INVITE gets forked), then the
route set in the 200 OK needs to overwrite the route set in the 1XX
response.
(closes issue ASTERISK-19358)
Reported by: Karsten Wemheuer
Tested by: Karsten Wemheuer
patches:
ASTERISK-19358.patch uploaded by Mark Michelson (license 5049)
ASTERISK-19358.patch uploaded by Stefan Schmidt (license 6034)
Review: https://reviewboard.asterisk.org/r/1749
2012-02-09 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 1.8.9.2 Released.
* channels/chan_sip.c: Fix SIP INFO DTMF handling for non-numeric
codes. In ASTERISK-18924, SIP INFO DTMF handling was changed to
account for both lowercase alphatbetic DTMF events, as well as
uppercase alphabetic DTMF events. When this occurred, the comparison
of the character buffer containing the event code was changed such
that the buffer was first compared against '0' and '9' to determine if
it was numeric. Unfortunately, since the first character in the
buffer will typically be '1' in the case of non-numeric event codes
(10-16), this caused those codes to be converted to a DTMF event of
'1'. This patch fixes that, and cleans up handling of both
application/dtmf-relay and application/dtmf content types.
Review: https://reviewboard.asterisk.org/r/1722/
(closes issue ASTERISK-19290) Reported by: Ira Emus
Tested by: mjordan
* apps/app_parkandannounce.c: Fix crash in ParkAndAnnounce from
uninitialized caller_id storage (closes issue ASTERISK-19311)
Reported by: tootai
Tested by: rmudgett
2012-02-06 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 1.8.9.1 Released.
* channels/chan_agent.c: Fixes deadlocks occuring in chan_agent due to
r335976. Bad locking order was added to chan_agent to prevent
segfaults from having no locking in a patch by irroot. This patch
addresses the bad locking order by releasing locks before getting the
right locking order to stop deadlocks from occuring when doing
multiple interactions with agents. (closes issue ASTERISK-19285)
Reported by: Alex Villacis Lasso
Review: https://reviewboard.asterisk.org/r/1708/
* channels/chan_sip.c: Ensure entering T.38 passthrough does not cause
an infinite loop. After R340970 Asterisk was still polling the RTCP
file descriptor after RTCP is shut down and removed. If the
descriptor happened to have data ready when the removal occured then
Asterisk would go into an infinite loop trying to read data that it
can never actually access. This change disables the audio RTCP file
descriptor for the duration of the T.38 transaction. (closes issue
ASTERISK-18951) Reported-by: Kristijan Vrban
2012-01-27 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 1.8.9.0 Released.

View File

@@ -140,6 +140,7 @@ static int parkandannounce_exec(struct ast_channel *chan, const char *data)
}
/* Save the CallerID because the masquerade turns chan into a ZOMBIE. */
ast_party_id_init(&caller_id);
ast_channel_lock(chan);
ast_party_id_copy(&caller_id, &chan->caller.id);
ast_channel_unlock(chan);

View File

@@ -1,384 +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-1.8.9.0</title></head>
<body>
<h1 align="center"><a name="top">Release Summary</a></h1>
<h3 align="center">asterisk-1.8.9.0</h3>
<h3 align="center">Date: 2012-01-27</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="#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-1.8.8.0.</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>
45 rmudgett<br/>
25 twilson<br/>
18 wdoekes<br/>
14 jrose<br/>
12 kmoore<br/>
12 mjordan<br/>
7 mnicholson<br/>
6 pabelanger<br/>
5 lmadsen<br/>
5 schmidts<br/>
4 bebuild<br/>
4 may<br/>
3 igorg<br/>
3 irroot<br/>
3 kpfleming<br/>
3 seanbright<br/>
2 tzafrir<br/>
1 qwell<br/>
1 tilghman<br/>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
<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/1.8?view=revision&revision=339566">339566</a></td><td>lmadsen</td><td>Update prep_tarball script to download pre-exported documentation.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18677">ASTERISK-18677</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339625">339625</a></td><td>rmudgett</td><td>Fix debugging messages generated by 'udptl debug'.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18401">ASTERISK-18401</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339719">339719</a></td><td>rmudgett</td><td>Fix regression in configure script for libpri capability checks.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18535">ASTERISK-18535</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18687">ASTERISK-18687</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339776">339776</a></td><td>rmudgett</td><td>Initialize option flags for SendURL application.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18574">ASTERISK-18574</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339830">339830</a></td><td>igorg</td><td></td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17314">ASTERISK-17314</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339884">339884</a></td><td>igorg</td><td></td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18638">ASTERISK-18638</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=339938">339938</a></td><td>igorg</td><td>Fix compilation issue, caused by missed session structure</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18694">ASTERISK-18694</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340108">340108</a></td><td>mnicholson</td><td>Load the proper XML documentation when multiple modules document the same application.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18130">ASTERISK-18130</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340164">340164</a></td><td>mjordan</td><td>Updated chan_sip to place calls on hold if SDP address in INVITE is ANY</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18086">ASTERISK-18086</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340263">340263</a></td><td>tzafrir</td><td>Update SHA1 code to RFC 6234</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340279">340279</a></td><td>rmudgett</td><td>Convert registered AMI actions to ao2 objects.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-13784">ASTERISK-13784</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-17785">ASTERISK-17785</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18479">ASTERISK-18479</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340284">340284</a></td><td>rmudgett</td><td>Fix some potential deadlocks pointed out by helgrind.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340365">340365</a></td><td>rmudgett</td><td>Add protection for SS7 channel allocation and better glare handling.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17966">ASTERISK-17966</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340418">340418</a></td><td>pabelanger</td><td>Fix verbose messages when IPv6 logic was added</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18612">ASTERISK-18612</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340470">340470</a></td><td>rmudgett</td><td>Update MeetMe p and X option documentation when interacting with the s option.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-12175">ASTERISK-12175</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340522">340522</a></td><td>rmudgett</td><td>Initialize the PRI channel alarms properly on startup.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18710">ASTERISK-18710</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340534">340534</a></td><td>twilson</td><td>Update SIP realtime fullcontact regardless of caching</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18446">ASTERISK-18446</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340576">340576</a></td><td>schmidts</td><td>Store route-set from provisional SIP responses so early-dialog requests can be routed properly</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340662">340662</a></td><td>twilson</td><td>Don't skip the query field on a realtime multi query</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340715">340715</a></td><td>twilson</td><td>Initialize ast_sockaddr before calling ast_sockaddr_resolve</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340717">340717</a></td><td>schmidts</td><td>storing the route-set also on a 181 response not only on 180,182 or 183.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340809">340809</a></td><td>rmudgett</td><td>Fix DTMF blind transfer continuing to execute dialplan after transfer.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18275">ASTERISK-18275</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340863">340863</a></td><td>jrose</td><td>Fixes some support level info so that it can be read by menuselect.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18268">ASTERISK-18268</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340878">340878</a></td><td>twilson</td><td>Avoid unnecessary WARNING message</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18610">ASTERISK-18610</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=340970">340970</a></td><td>kmoore</td><td>Quiet RTCP Receiver Reports during fax transmission</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18400">ASTERISK-18400</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341022">341022</a></td><td>kpfleming</td><td>Change the internal name of the menuselect options that are used to control</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341074">341074</a></td><td>tzafrir</td><td>Remove an unused include of md5.h</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341088">341088</a></td><td>twilson</td><td>Don't try to remove peers without IPs from peers_by_ip</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18696">ASTERISK-18696</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341108">341108</a></td><td>pabelanger</td><td>Voicemail compiler flags are 'core' support</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341112">341112</a></td><td>pabelanger</td><td>Fix previous commit</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341189">341189</a></td><td>twilson</td><td>Initialize variables before calling parse_uri</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18668">ASTERISK-18668</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341254">341254</a></td><td>rmudgett</td><td>More parking issues.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341312">341312</a></td><td>may</td><td>fix issue on channel numbering (calls could have same channel number</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341314">341314</a></td><td>twilson</td><td>Don't resolve numeric hosts or contact unresolved hosts</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17146">ASTERISK-17146</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-17716">ASTERISK-17716</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341366">341366</a></td><td>schmidts</td><td>Don't sent in-dialog requests like UPDATE when Asterisk has not yet received a Contact URI from a UAS</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341379">341379</a></td><td>twilson</td><td>Don't use is_int() since it doesn't link well on all platforms</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17146">ASTERISK-17146</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341435">341435</a></td><td>pabelanger</td><td>Outgoing calls with Google Voice</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18714">ASTERISK-18714</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341529">341529</a></td><td>twilson</td><td>Clean up ast_check_digits</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341664">341664</a></td><td>pabelanger</td><td>Updated documentation for the optional CID parameter with CALLERID</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341704">341704</a></td><td>pabelanger</td><td>Fixed typo from previous commit</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341717">341717</a></td><td>rmudgett</td><td>Fix AGI exec Park to honor the Park application parameters.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-12715">ASTERISK-12715</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-12685">ASTERISK-12685</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18737">ASTERISK-18737</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341806">341806</a></td><td>mnicholson</td><td>don't limit the length of app and function arguments</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18395">ASTERISK-18395</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341809">341809</a></td><td>mnicholson</td><td>only process args that exist</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18395">ASTERISK-18395</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341906">341906</a></td><td>irroot</td><td>Whitespace Fixups / Add Braces</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=341921">341921</a></td><td>irroot</td><td>Revert Janitor patch 341906 For now</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342061">342061</a></td><td>jrose</td><td>Outbound SIP OPTIONS messages will now include fromuser of related peer.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17616">ASTERISK-17616</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342223">342223</a></td><td>twilson</td><td>Return NULL when no results returned for realtime_multientry</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342276">342276</a></td><td>kmoore</td><td>Fix spool handling to allow call files to be hardlinked into place</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18331">ASTERISK-18331</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342328">342328</a></td><td>kmoore</td><td>Fix compilation on Snow Leopard/FreeBSD for pbx_spool.c</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342380">342380</a></td><td>twilson</td><td>Properly update membercount for reloaded members</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342383">342383</a></td><td>twilson</td><td>Simplify queue membercount code</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342435">342435</a></td><td>twilson</td><td>Use int for storing ao2_container_count instad of size_t</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342484">342484</a></td><td>rmudgett</td><td>Change D-channel warning to be less confusing on non-NFAS setups.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342487">342487</a></td><td>rmudgett</td><td>Check fopen return value for ao2 reference debug output.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342545">342545</a></td><td>jrose</td><td>Cleanup reference leaks in res_jabber</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342602">342602</a></td><td>jrose</td><td>Fix sequence number overflow over 16 bits causing codec change in RTP packets.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18291">ASTERISK-18291</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342661">342661</a></td><td>rmudgett</td><td>Fix AST_LIST_INSERT_BEFORE_CURRENT() updating the wrong variable.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342769">342769</a></td><td>mjordan</td><td>Fixed invalid memory access when adding extension to pattern match tree</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18135">ASTERISK-18135</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342869">342869</a></td><td>wdoekes</td><td>Cleanup references to sipusers and sipfriends dynamic realtime families</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342927">342927</a></td><td>wdoekes</td><td>Several fixes to the chan_sip dynamic realtime peer/user lookup</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17792">ASTERISK-17792</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18356">ASTERISK-18356</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=342990">342990</a></td><td>kpfleming</td><td>Modify comments in MeetMe application documentation about DAHDI.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343047">343047</a></td><td>lmadsen</td><td>Update documentation for leastrecent strategy.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17854">ASTERISK-17854</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343102">343102</a></td><td>lmadsen</td><td>Add note about how Authenticate() application with option 'd' works.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17422">ASTERISK-17422</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343157">343157</a></td><td>wdoekes</td><td>Ensure that string field lengths are properly aligned</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17310">ASTERISK-17310</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343181">343181</a></td><td>wdoekes</td><td>Fix improper warning introduced by r342927 and more tweaks</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343220">343220</a></td><td>twilson</td><td>Remove registertrying option in chan_sip</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343276">343276</a></td><td>twilson</td><td>Make room for the fax detect flags</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343281">343281</a></td><td>may</td><td>Final fix memleaks in GkClient codes, same for Timer codes.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343336">343336</a></td><td>rmudgett</td><td>Remove invalid flag given to iterator in func_dialgroup.c</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343375">343375</a></td><td>wdoekes</td><td>Fix sqlite config driver segfault and broken queries</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18354">ASTERISK-18354</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18355">ASTERISK-18355</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343577">343577</a></td><td>rmudgett</td><td>Fix deadlock if peer is destroyed while sending MWI notice.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18747">ASTERISK-18747</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343621">343621</a></td><td>kmoore</td><td>Prevent BLF subscriptions from causing deadlocks</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18663">ASTERISK-18663</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343637">343637</a></td><td>rmudgett</td><td>Fix __sip_subscribe_mwi_do() incorectly changing dialogs hash key callid.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343690">343690</a></td><td>mnicholson</td><td>respect case changes in peer names on sip reload</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18669">ASTERISK-18669</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343791">343791</a></td><td>lmadsen</td><td>Fix boo-boo in prep_tarball script.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343851">343851</a></td><td>rmudgett</td><td>Fixed reference to incorrect variable if unknown host configured crash.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18743">ASTERISK-18743</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=343936">343936</a></td><td>wdoekes</td><td>Fix crash when dialplan remove include is called with too few arguments.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18762">ASTERISK-18762</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344048">344048</a></td><td>mnicholson</td><td>don't call ltohl() twice on the same value</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18739">ASTERISK-18739</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344102">344102</a></td><td>kmoore</td><td>Fix pin parameter behavior regression in MeetMe</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18488">ASTERISK-18488</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344157">344157</a></td><td>twilson</td><td>Add a unit test for ast_sockaddr_split_hostport</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344158">344158</a></td><td>may</td><td>(closes issue ASTERISK-18748)</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18748">ASTERISK-18748</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344215">344215</a></td><td>twilson</td><td>Don't treat a host:port string as a domain</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344268">344268</a></td><td>rmudgett</td><td>Fix deadlock during dialplan reload.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18740">ASTERISK-18740</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344330">344330</a></td><td>mnicholson</td><td>only attempt to do stun handling on ipv4 or ipv4 mapped to ipv6 addresses</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18490">ASTERISK-18490</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344385">344385</a></td><td>kmoore</td><td>Fix several bugs with SDP parsing and well-formedness of responses</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16558">ASTERISK-16558</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344439">344439</a></td><td>kmoore</td><td>Fix another incorrect case with meetme's PIN logic and add documentation</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344536">344536</a></td><td>rmudgett</td><td>Make AMI event AgentCalled get CallerID/ConnectedLine info from the incoming channel.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18152">ASTERISK-18152</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344539">344539</a></td><td>rmudgett</td><td>Fix potential deadlock calling ast_call() with channel locks held.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344608">344608</a></td><td>jrose</td><td>Fix a segmentation fault when using an extension with CID matching and no CID.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18392">ASTERISK-18392</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344661">344661</a></td><td>rmudgett</td><td>Make CLI "core show channel" not hold the channel lock during console output.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18571">ASTERISK-18571</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344715">344715</a></td><td>rmudgett</td><td>Check sip.conf maxforwards parameter for range 1 <= x <= 255.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344769">344769</a></td><td>kmoore</td><td>Fix regression introduced by SDP fixups</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344823">344823</a></td><td>mjordan</td><td>Video format was treated as audio when removed from the file playback scheduler</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18682">ASTERISK-18682</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344835">344835</a></td><td>wdoekes</td><td>Fix bad quoting of multiline mxml opaque_data that caused invalid xml.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18852">ASTERISK-18852</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344837">344837</a></td><td>wdoekes</td><td>Remove unneeded if(params) checks in reqresp_parser.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344843">344843</a></td><td>wdoekes</td><td>Use __alignof__ instead of sizeof for stringfield length storage.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344899">344899</a></td><td>twilson</td><td>Don't forget to rescan MOH files for cached realtime classes</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18039">ASTERISK-18039</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=344965">344965</a></td><td>irroot</td><td>mISDN Round Robin break when no channel is available</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345062">345062</a></td><td>jrose</td><td>Moves voicemail setup password entry to the end of the setup process.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18282">ASTERISK-18282</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345063">345063</a></td><td>kmoore</td><td>Ensure that a null vmexten does not cause a segfault</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345160">345160</a></td><td>wdoekes</td><td>Update reqresp_parser parse_uri doxygen comments.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18572">ASTERISK-18572</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345163">345163</a></td><td>twilson</td><td>Don't read past end of input when calling write()</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345219">345219</a></td><td>rmudgett</td><td>Fix Progress spelling error in main/pbx.c.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18857">ASTERISK-18857</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345273">345273</a></td><td>rmudgett</td><td>Restore SIP DTMF overlap dialing method.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17288">ASTERISK-17288</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18702">ASTERISK-18702</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345285">345285</a></td><td>rmudgett</td><td>Make queue log indicate if ADDMEMBER is paused for AMI and realtime.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18645">ASTERISK-18645</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345370">345370</a></td><td>rmudgett</td><td>Fix typo in sig_pri using wrong structure name.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18868">ASTERISK-18868</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345431">345431</a></td><td>rmudgett</td><td>Make FastAGI HANGUP show up in AGI debug output.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18723">ASTERISK-18723</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345487">345487</a></td><td>jrose</td><td>Guarantee messages go into the right folders with multiple recipients</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18245">ASTERISK-18245</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18246">ASTERISK-18246</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345545">345545</a></td><td>qwell</td><td>Fix documentation of 's' option.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345546">345546</a></td><td>rmudgett</td><td>Remove dead code since pri_grab() can never fail.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345682">345682</a></td><td>tilghman</td><td>Update the documentation to better clarify how the existing commands work.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345828">345828</a></td><td>twilson</td><td>Default to nat=yes; warn when nat in general and peer differ</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18862">ASTERISK-18862</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345829">345829</a></td><td>twilson</td><td>Change nat=yes to nat=force_rport in CHANGES</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18862">ASTERISK-18862</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345923">345923</a></td><td>wdoekes</td><td>Clarify why the AST_LOG_* macros exist next to the LOG_* macros.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17973">ASTERISK-17973</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=345976">345976</a></td><td>rmudgett</td><td>Fix dnsmgr entries to ask for the same address family each time.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346030">346030</a></td><td>twilson</td><td>Resume playing existing hold music for cached realtime MOH</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18039">ASTERISK-18039</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18912">ASTERISK-18912</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346086">346086</a></td><td>kmoore</td><td>Fix res_jabber resource leaks</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346144">346144</a></td><td>wdoekes</td><td>Fix ast_str_truncate signedness warning and documentation.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346147">346147</a></td><td>wdoekes</td><td>Minor cleanup in chan_sip get_msg_text() function.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346239">346239</a></td><td>rmudgett</td><td>Fix calls to ast_get_ip() not initializing the address family.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346292">346292</a></td><td>schmidts</td><td>Fix regression that 'rtp/rtcp set debup ip' only works when also a port was specified.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18693">ASTERISK-18693</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346472">346472</a></td><td>lmadsen</td><td>Update queues.conf.sample documentation.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17413">ASTERISK-17413</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346564">346564</a></td><td>jrose</td><td>r346525 | jrose | 2011-11-30 15:10:38 -0600 (Wed, 30 Nov 2011) | 18 lines</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18700">ASTERISK-18700</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18345">ASTERISK-18345</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18342">ASTERISK-18342</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346697">346697</a></td><td>jrose</td><td>Change 183 Ringing in sipfrag body to 180 ringing. 183 Ringing isn't even a thing.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18925">ASTERISK-18925</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346700">346700</a></td><td>rmudgett</td><td>Re-resolve the STUN address if a STUN poll fails for res_stun_monitor.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18327">ASTERISK-18327</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346762">346762</a></td><td>may</td><td>process null frame pointer returned by ast_rtp_instance_read correctly</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16697">ASTERISK-16697</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346899">346899</a></td><td>wdoekes</td><td>For SIP REGISTER fix domain-only URIs and domain ACL bypass.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18389">ASTERISK-18389</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18741">ASTERISK-18741</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346951">346951</a></td><td>kmoore</td><td>Fix chan_jingle/gtalk load regression introduced in r346087</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=346954">346954</a></td><td>jrose</td><td>Resolve duplicate label used in multiple priorities for the same extension.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18807">ASTERISK-18807</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347006">347006</a></td><td>rmudgett</td><td>Restore call progress code for analog ports.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18841">ASTERISK-18841</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347058">347058</a></td><td>mjordan</td><td>Fixed crash from orphaned MWI subscriptions in chan_sip</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18663">ASTERISK-18663</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347111">347111</a></td><td>wdoekes</td><td>Move setting of voicemail zonetag and locale up a bit.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18838">ASTERISK-18838</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347131">347131</a></td><td>wdoekes</td><td>Add regression tests for issue ASTERISK-18838.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347166">347166</a></td><td>wdoekes</td><td>Don't allow transport=tcp when tcpenable=no.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18837">ASTERISK-18837</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347239">347239</a></td><td>jrose</td><td>Documents CHANNEL(musicclass) taking priority over m([x]) in waitExten</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18804">ASTERISK-18804</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347292">347292</a></td><td>rmudgett</td><td>Make SIP INFO messages for dtmf-relay signals case insensitive.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18924">ASTERISK-18924</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347369">347369</a></td><td>jrose</td><td>Fix: Meetme recording variables from realtime DB use null entries over channel variables</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18873">ASTERISK-18873</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347438">347438</a></td><td>rmudgett</td><td>Update AMI Getvar and Setvar documentation about supplying a channel name.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18958">ASTERISK-18958</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347531">347531</a></td><td>twilson</td><td>Don't crash on INFO automon request with no channel</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18805">ASTERISK-18805</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347595">347595</a></td><td>rmudgett</td><td>Mark channel running the h exten with the soft-hangup flag.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18811">ASTERISK-18811</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347718">347718</a></td><td>wdoekes</td><td>Fix regression when using tcpenable=no and tlsenable=yes.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347811">347811</a></td><td>rmudgett</td><td>Fix some parsing issues in add_exten_to_pattern_tree().</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18909">ASTERISK-18909</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=347995">347995</a></td><td>twilson</td><td>Add a separate buffer for SRTCP packets</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18889">ASTERISK-18889</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348048">348048</a></td><td>schmidts</td><td>Fix possible misshandling of an incoming SIP response as a peer poke response.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18940">ASTERISK-18940</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348101">348101</a></td><td>rmudgett</td><td>Fix FollowMe CallerID on outgoing calls.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17557">ASTERISK-17557</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348154">348154</a></td><td>jrose</td><td>Document PARKINGSLOT variable in features.conf.sample</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16239">ASTERISK-16239</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348157">348157</a></td><td>jrose</td><td>Fix accidental use of tabs instead of spaces from previous features.conf.sample change</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348212">348212</a></td><td>mnicholson</td><td>Don't clear LOCALSTATIONID before sending or receiving. The user may set that</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18921">ASTERISK-18921</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348310">348310</a></td><td>rmudgett</td><td>Fix ParkAndAnnounce to pass the CallerID to the announcing channel.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348362">348362</a></td><td>rmudgett</td><td>Fix crash during CDR update.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18836">ASTERISK-18836</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348401">348401</a></td><td>rmudgett</td><td>Fix cut and past error in ast_call_forward().</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18836">ASTERISK-18836</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348464">348464</a></td><td>rmudgett</td><td>Clean-up on isle five for __ast_request_and_dial() and ast_call_forward().</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348516">348516</a></td><td>kpfleming</td><td>Correct two flaws in sip.conf.sample related to AST-2011-013.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348647">348647</a></td><td>rmudgett</td><td>Fix crashes on other platforms caused by interference from Darwin weak symbol support.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18728">ASTERISK-18728</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348735">348735</a></td><td>rmudgett</td><td>Fix chan_iax2 to not report an RDNIS number if it is blank.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17152">ASTERISK-17152</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348833">348833</a></td><td>twilson</td><td>Allow packetization vaules > 127</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18876">ASTERISK-18876</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348888">348888</a></td><td>mjordan</td><td>Fix for memory leaks / cleanup in cel_pgsql</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18879">ASTERISK-18879</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348940">348940</a></td><td>rmudgett</td><td>Fix extension state callback references in chan_sip.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17760">ASTERISK-17760</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18844">ASTERISK-18844</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=348992">348992</a></td><td>kmoore</td><td>Fix missing doc tags found while fixing ASTERISK-18689</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-18689">ASTERISK-18689</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=349044">349044</a></td><td>seanbright</td><td>In ChanSpy, don't create audiohooks that will never be used.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=349144">349144</a></td><td>seanbright</td><td>Once an audiohook is attached to a channel, we continue to transcode all of the</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=349194">349194</a></td><td>mjordan</td><td>Fix timing source dependency issues with MOH</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17474">ASTERISK-17474</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=349289">349289</a></td><td>seanbright</td><td>Use ast_audiohook_write_list_empty to determine if our lists are empty instead</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=349339">349339</a></td><td>mjordan</td><td>Handle AST_CONTROL_UPDATE_RTP_PEER frames in local bridge loop</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19040">ASTERISK-19040</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-19128">ASTERISK-19128</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-17725">ASTERISK-17725</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-18340">ASTERISK-18340</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-19095">ASTERISK-19095</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=350588">350588</a></td><td>mjordan</td><td>Create tag for 1.8.9.0-rc2</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=350606">350606</a></td><td>mjordan</td><td>Merged 1.8.9.0-rc2 blockers</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=350682">350682</a></td><td>bebuild</td><td>Remove summary files</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=350696">350696</a></td><td>bebuild</td><td>Importing release summary for 1.8.9.0-rc2 release.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=350728">350728</a></td><td>mjordan</td><td>Updated summaries to proper issues</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=352284">352284</a></td><td>mjordan</td><td>Create 1.8.9.0-rc3</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=352286">352286</a></td><td>mjordan</td><td>Commit changes: r349731, r352199, r352014, r351504</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=352344">352344</a></td><td>bebuild</td><td>Updated test results</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=352345">352345</a></td><td>bebuild</td><td>Importing release summary for 1.8.9.0-rc3 release.</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>
.version | 2
CHANGES | 12
ChangeLog | 31
Makefile.moddir_rules | 4
UPGRADE.txt | 7
addons/chan_ooh323.c | 4
addons/ooh323c/src/dlist.c | 6
addons/ooh323c/src/dlist.h | 2
addons/ooh323c/src/ooGkClient.c | 10
addons/ooh323c/src/ooTimer.c | 6
addons/ooh323c/src/oochannels.c | 4
addons/ooh323c/src/ooh245.c | 17
addons/ooh323c/src/ooh323.c | 1
addons/ooh323c/src/ooq931.c | 181 +++
addons/ooh323c/src/ooq931.h | 8
addons/ooh323c/src/ootypes.h | 3
addons/ooh323c/src/printHandler.c | 4
apps/app_authenticate.c | 23
apps/app_celgenuserevent.c | 4
apps/app_chanspy.c | 56 -
apps/app_confbridge.c | 2
apps/app_dial.c | 2
apps/app_fax.c | 4
apps/app_followme.c | 201 ++-
apps/app_meetme.c | 52 -
apps/app_parkandannounce.c | 19
apps/app_queue.c | 80 -
apps/app_system.c | 4
apps/app_url.c | 2
apps/app_voicemail.c | 332 ++++--
asterisk-1.8.9.0-rc2-summary.html | 60 -
asterisk-1.8.9.0-rc2-summary.txt | 88 -
asterisk-1.8.9.0-rc3-summary.html | 64 +
asterisk-1.8.9.0-rc3-summary.txt | 94 +
autoconf/ast_ext_lib.m4 | 20
bridges/bridge_builtin_features.c | 13
build_tools/cflags.xml | 6
build_tools/embed_modules.xml | 22
build_tools/prep_tarball | 2
cel/cel_pgsql.c | 37
channels/chan_dahdi.c | 57 -
channels/chan_gtalk.c | 20
channels/chan_h323.c | 3
channels/chan_iax2.c | 203 ++-
channels/chan_jingle.c | 38
channels/chan_mgcp.c | 3
channels/chan_misdn.c | 16
channels/chan_sip.c | 1727 +++++++++++++++++++++-------------
channels/chan_skinny.c | 1
channels/chan_unistim.c | 5
channels/sig_analog.c | 17
channels/sig_analog.h | 1
channels/sig_pri.c | 263 ++---
channels/sig_ss7.c | 380 +++++--
channels/sig_ss7.h | 36
channels/sip/include/dialog.h | 9
channels/sip/include/reqresp_parser.h | 14
channels/sip/include/sip.h | 88 -
channels/sip/reqresp_parser.c | 198 +--
codecs/codec_dahdi.c | 1
configs/dbsep.conf.sample | 3
configs/extconfig.conf.sample | 3
configs/features.conf.sample | 2
configs/queues.conf.sample | 11
configs/res_config_mysql.conf.sample | 2
configs/res_ldap.conf.sample | 1
configs/res_stun_monitor.conf.sample | 17
configs/sip.conf.sample | 26
configure.ac | 54 +
contrib/realtime/mysql/sipfriends.sql | 98 -
contrib/realtime/mysql/sippeers.sql | 97 +
doc/appdocsxml.dtd | 2
formats/format_wav.c | 6
funcs/func_callerid.c | 3
funcs/func_cdr.c | 20
funcs/func_dialgroup.c | 2
funcs/func_realtime.c | 4
include/asterisk/acl.h | 25
include/asterisk/autoconfig.h.in | 64 +
include/asterisk/cdr.h | 32
include/asterisk/config.h | 14
include/asterisk/dnsmgr.h | 19
include/asterisk/features.h | 89 +
include/asterisk/frame.h | 2
include/asterisk/jabber.h | 5
include/asterisk/linkedlists.h | 2
include/asterisk/logger.h | 4
include/asterisk/manager.h | 7
include/asterisk/module.h | 9
include/asterisk/pbx.h | 42
include/asterisk/sha1.h | 390 ++++++-
include/asterisk/stringfields.h | 17
include/asterisk/strings.h | 29
include/asterisk/stun.h | 43
include/asterisk/tcptls.h | 7
include/asterisk/utils.h | 53 +
include/asterisk/xmldoc.h | 15
main/acl.c | 15
main/astobj2.c | 20
main/audiohook.c | 4
main/channel.c | 130 +-
main/cli.c | 32
main/config.c | 30
main/db.c | 8
main/dnsmgr.c | 18
main/features.c | 334 +++++-
main/file.c | 56 -
main/loader.c | 9
main/manager.c | 604 +++++++----
main/pbx.c | 543 +++++++---
main/rtp_engine.c | 8
main/sha1.c | 422 ++++----
main/stun.c | 126 +-
main/tcptls.c | 55 -
main/udptl.c | 54 -
main/utils.c | 41
main/xmldoc.c | 108 +-
pbx/pbx_config.c | 2
pbx/pbx_lua.c | 112 +-
pbx/pbx_realtime.c | 1
pbx/pbx_spool.c | 64 +
res/res_agi.c | 16
res/res_config_sqlite.c | 9
res/res_curl.c | 1
res/res_fax.c | 15
res/res_jabber.c | 182 ++-
res/res_jabber.exports.in | 2
res/res_monitor.c | 6
res/res_musiconhold.c | 38
res/res_realtime.c | 8
res/res_rtp_asterisk.c | 130 +-
res/res_rtp_multicast.c | 7
res/res_srtp.c | 10
res/res_stun_monitor.c | 304 +++--
res/res_timing_dahdi.c | 2
res/res_timing_pthread.c | 2
res/res_timing_timerfd.c | 2
tests/test_linkedlists.c | 146 ++
tests/test_netsock2.c | 71 +
utils/utils.xml | 1
140 files changed, 6435 insertions(+), 3101 deletions(-)
</pre><br/>
<hr/>
</body>
</html>

View File

@@ -1,769 +0,0 @@
Release Summary
asterisk-1.8.9.0
Date: 2012-01-27
<asteriskteam@digium.com>
----------------------------------------------------------------------
Table of Contents
1. Summary
2. Contributors
3. Other Changes
4. 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-1.8.8.0.
----------------------------------------------------------------------
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
45 rmudgett
25 twilson
18 wdoekes
14 jrose
12 kmoore
12 mjordan
7 mnicholson
6 pabelanger
5 lmadsen
5 schmidts
4 bebuild
4 may
3 igorg
3 irroot
3 kpfleming
3 seanbright
2 tzafrir
1 qwell
1 tilghman
----------------------------------------------------------------------
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 |
|--------+----------+------------------------------------+---------------|
|339566 |lmadsen |Update prep_tarball script to |ASTERISK-18677 |
| | |download pre-exported documentation.| |
|--------+----------+------------------------------------+---------------|
|339625 |rmudgett |Fix debugging messages generated by |ASTERISK-18401 |
| | |'udptl debug'. | |
|--------+----------+------------------------------------+---------------|
|339719 |rmudgett |Fix regression in configure script |ASTERISK-18535,|
| | |for libpri capability checks. |ASTERISK-18687 |
|--------+----------+------------------------------------+---------------|
|339776 |rmudgett |Initialize option flags for SendURL |ASTERISK-18574 |
| | |application. | |
|--------+----------+------------------------------------+---------------|
|339830 |igorg | |ASTERISK-17314 |
|--------+----------+------------------------------------+---------------|
|339884 |igorg | |ASTERISK-18638 |
|--------+----------+------------------------------------+---------------|
|339938 |igorg |Fix compilation issue, caused by |ASTERISK-18694 |
| | |missed session structure | |
|--------+----------+------------------------------------+---------------|
| | |Load the proper XML documentation | |
|340108 |mnicholson|when multiple modules document the |ASTERISK-18130 |
| | |same application. | |
|--------+----------+------------------------------------+---------------|
|340164 |mjordan |Updated chan_sip to place calls on |ASTERISK-18086 |
| | |hold if SDP address in INVITE is ANY| |
|--------+----------+------------------------------------+---------------|
|340263 |tzafrir |Update SHA1 code to RFC 6234 | |
|--------+----------+------------------------------------+---------------|
| | |Convert registered AMI actions to |ASTERISK-13784,|
|340279 |rmudgett |ao2 objects. |ASTERISK-17785,|
| | | |ASTERISK-18479 |
|--------+----------+------------------------------------+---------------|
|340284 |rmudgett |Fix some potential deadlocks pointed| |
| | |out by helgrind. | |
|--------+----------+------------------------------------+---------------|
| | |Add protection for SS7 channel | |
|340365 |rmudgett |allocation and better glare |ASTERISK-17966 |
| | |handling. | |
|--------+----------+------------------------------------+---------------|
|340418 |pabelanger|Fix verbose messages when IPv6 logic|ASTERISK-18612 |
| | |was added | |
|--------+----------+------------------------------------+---------------|
| | |Update MeetMe p and X option | |
|340470 |rmudgett |documentation when interacting with |ASTERISK-12175 |
| | |the s option. | |
|--------+----------+------------------------------------+---------------|
|340522 |rmudgett |Initialize the PRI channel alarms |ASTERISK-18710 |
| | |properly on startup. | |
|--------+----------+------------------------------------+---------------|
|340534 |twilson |Update SIP realtime fullcontact |ASTERISK-18446 |
| | |regardless of caching | |
|--------+----------+------------------------------------+---------------|
| | |Store route-set from provisional SIP| |
|340576 |schmidts |responses so early-dialog requests | |
| | |can be routed properly | |
|--------+----------+------------------------------------+---------------|
|340662 |twilson |Don't skip the query field on a | |
| | |realtime multi query | |
|--------+----------+------------------------------------+---------------|
|340715 |twilson |Initialize ast_sockaddr before | |
| | |calling ast_sockaddr_resolve | |
|--------+----------+------------------------------------+---------------|
|340717 |schmidts |storing the route-set also on a 181 | |
| | |response not only on 180,182 or 183.| |
|--------+----------+------------------------------------+---------------|
|340809 |rmudgett |Fix DTMF blind transfer continuing |ASTERISK-18275 |
| | |to execute dialplan after transfer. | |
|--------+----------+------------------------------------+---------------|
|340863 |jrose |Fixes some support level info so |ASTERISK-18268 |
| | |that it can be read by menuselect. | |
|--------+----------+------------------------------------+---------------|
|340878 |twilson |Avoid unnecessary WARNING message |ASTERISK-18610 |
|--------+----------+------------------------------------+---------------|
|340970 |kmoore |Quiet RTCP Receiver Reports during |ASTERISK-18400 |
| | |fax transmission | |
|--------+----------+------------------------------------+---------------|
| | |Change the internal name of the | |
|341022 |kpfleming |menuselect options that are used to | |
| | |control | |
|--------+----------+------------------------------------+---------------|
|341074 |tzafrir |Remove an unused include of md5.h | |
|--------+----------+------------------------------------+---------------|
|341088 |twilson |Don't try to remove peers without |ASTERISK-18696 |
| | |IPs from peers_by_ip | |
|--------+----------+------------------------------------+---------------|
|341108 |pabelanger|Voicemail compiler flags are 'core' | |
| | |support | |
|--------+----------+------------------------------------+---------------|
|341112 |pabelanger|Fix previous commit | |
|--------+----------+------------------------------------+---------------|
|341189 |twilson |Initialize variables before calling |ASTERISK-18668 |
| | |parse_uri | |
|--------+----------+------------------------------------+---------------|
|341254 |rmudgett |More parking issues. | |
|--------+----------+------------------------------------+---------------|
| | |fix issue on channel numbering | |
|341312 |may |(calls could have same channel | |
| | |number | |
|--------+----------+------------------------------------+---------------|
|341314 |twilson |Don't resolve numeric hosts or |ASTERISK-17146,|
| | |contact unresolved hosts |ASTERISK-17716 |
|--------+----------+------------------------------------+---------------|
| | |Don't sent in-dialog requests like | |
|341366 |schmidts |UPDATE when Asterisk has not yet | |
| | |received a Contact URI from a UAS | |
|--------+----------+------------------------------------+---------------|
|341379 |twilson |Don't use is_int() since it doesn't |ASTERISK-17146 |
| | |link well on all platforms | |
|--------+----------+------------------------------------+---------------|
|341435 |pabelanger|Outgoing calls with Google Voice |ASTERISK-18714 |
|--------+----------+------------------------------------+---------------|
|341529 |twilson |Clean up ast_check_digits | |
|--------+----------+------------------------------------+---------------|
|341664 |pabelanger|Updated documentation for the | |
| | |optional CID parameter with CALLERID| |
|--------+----------+------------------------------------+---------------|
|341704 |pabelanger|Fixed typo from previous commit | |
|--------+----------+------------------------------------+---------------|
| | |Fix AGI exec Park to honor the Park |ASTERISK-12715,|
|341717 |rmudgett |application parameters. |ASTERISK-12685,|
| | | |ASTERISK-18737 |
|--------+----------+------------------------------------+---------------|
|341806 |mnicholson|don't limit the length of app and |ASTERISK-18395 |
| | |function arguments | |
|--------+----------+------------------------------------+---------------|
|341809 |mnicholson|only process args that exist |ASTERISK-18395 |
|--------+----------+------------------------------------+---------------|
|341906 |irroot |Whitespace Fixups / Add Braces | |
|--------+----------+------------------------------------+---------------|
|341921 |irroot |Revert Janitor patch 341906 For now | |
|--------+----------+------------------------------------+---------------|
| | |Outbound SIP OPTIONS messages will | |
|342061 |jrose |now include fromuser of related |ASTERISK-17616 |
| | |peer. | |
|--------+----------+------------------------------------+---------------|
|342223 |twilson |Return NULL when no results returned| |
| | |for realtime_multientry | |
|--------+----------+------------------------------------+---------------|
|342276 |kmoore |Fix spool handling to allow call |ASTERISK-18331 |
| | |files to be hardlinked into place | |
|--------+----------+------------------------------------+---------------|
|342328 |kmoore |Fix compilation on Snow | |
| | |Leopard/FreeBSD for pbx_spool.c | |
|--------+----------+------------------------------------+---------------|
|342380 |twilson |Properly update membercount for | |
| | |reloaded members | |
|--------+----------+------------------------------------+---------------|
|342383 |twilson |Simplify queue membercount code | |
|--------+----------+------------------------------------+---------------|
|342435 |twilson |Use int for storing | |
| | |ao2_container_count instad of size_t| |
|--------+----------+------------------------------------+---------------|
|342484 |rmudgett |Change D-channel warning to be less | |
| | |confusing on non-NFAS setups. | |
|--------+----------+------------------------------------+---------------|
|342487 |rmudgett |Check fopen return value for ao2 | |
| | |reference debug output. | |
|--------+----------+------------------------------------+---------------|
|342545 |jrose |Cleanup reference leaks in | |
| | |res_jabber | |
|--------+----------+------------------------------------+---------------|
| | |Fix sequence number overflow over 16| |
|342602 |jrose |bits causing codec change in RTP |ASTERISK-18291 |
| | |packets. | |
|--------+----------+------------------------------------+---------------|
|342661 |rmudgett |Fix AST_LIST_INSERT_BEFORE_CURRENT()| |
| | |updating the wrong variable. | |
|--------+----------+------------------------------------+---------------|
| | |Fixed invalid memory access when | |
|342769 |mjordan |adding extension to pattern match |ASTERISK-18135 |
| | |tree | |
|--------+----------+------------------------------------+---------------|
|342869 |wdoekes |Cleanup references to sipusers and | |
| | |sipfriends dynamic realtime families| |
|--------+----------+------------------------------------+---------------|
|342927 |wdoekes |Several fixes to the chan_sip |ASTERISK-17792,|
| | |dynamic realtime peer/user lookup |ASTERISK-18356 |
|--------+----------+------------------------------------+---------------|
| | |Modify comments in MeetMe | |
|342990 |kpfleming |application documentation about | |
| | |DAHDI. | |
|--------+----------+------------------------------------+---------------|
|343047 |lmadsen |Update documentation for leastrecent|ASTERISK-17854 |
| | |strategy. | |
|--------+----------+------------------------------------+---------------|
|343102 |lmadsen |Add note about how Authenticate() |ASTERISK-17422 |
| | |application with option 'd' works. | |
|--------+----------+------------------------------------+---------------|
|343157 |wdoekes |Ensure that string field lengths are|ASTERISK-17310 |
| | |properly aligned | |
|--------+----------+------------------------------------+---------------|
|343181 |wdoekes |Fix improper warning introduced by | |
| | |r342927 and more tweaks | |
|--------+----------+------------------------------------+---------------|
|343220 |twilson |Remove registertrying option in | |
| | |chan_sip | |
|--------+----------+------------------------------------+---------------|
|343276 |twilson |Make room for the fax detect flags | |
|--------+----------+------------------------------------+---------------|
|343281 |may |Final fix memleaks in GkClient | |
| | |codes, same for Timer codes. | |
|--------+----------+------------------------------------+---------------|
|343336 |rmudgett |Remove invalid flag given to | |
| | |iterator in func_dialgroup.c | |
|--------+----------+------------------------------------+---------------|
|343375 |wdoekes |Fix sqlite config driver segfault |ASTERISK-18354,|
| | |and broken queries |ASTERISK-18355 |
|--------+----------+------------------------------------+---------------|
|343577 |rmudgett |Fix deadlock if peer is destroyed |ASTERISK-18747 |
| | |while sending MWI notice. | |
|--------+----------+------------------------------------+---------------|
|343621 |kmoore |Prevent BLF subscriptions from |ASTERISK-18663 |
| | |causing deadlocks | |
|--------+----------+------------------------------------+---------------|
| | |Fix __sip_subscribe_mwi_do() | |
|343637 |rmudgett |incorectly changing dialogs hash key| |
| | |callid. | |
|--------+----------+------------------------------------+---------------|
|343690 |mnicholson|respect case changes in peer names |ASTERISK-18669 |
| | |on sip reload | |
|--------+----------+------------------------------------+---------------|
|343791 |lmadsen |Fix boo-boo in prep_tarball script. | |
|--------+----------+------------------------------------+---------------|
| | |Fixed reference to incorrect | |
|343851 |rmudgett |variable if unknown host configured |ASTERISK-18743 |
| | |crash. | |
|--------+----------+------------------------------------+---------------|
| | |Fix crash when dialplan remove | |
|343936 |wdoekes |include is called with too few |ASTERISK-18762 |
| | |arguments. | |
|--------+----------+------------------------------------+---------------|
|344048 |mnicholson|don't call ltohl() twice on the same|ASTERISK-18739 |
| | |value | |
|--------+----------+------------------------------------+---------------|
|344102 |kmoore |Fix pin parameter behavior |ASTERISK-18488 |
| | |regression in MeetMe | |
|--------+----------+------------------------------------+---------------|
|344157 |twilson |Add a unit test for | |
| | |ast_sockaddr_split_hostport | |
|--------+----------+------------------------------------+---------------|
|344158 |may |(closes issue ASTERISK-18748) |ASTERISK-18748 |
|--------+----------+------------------------------------+---------------|
|344215 |twilson |Don't treat a host:port string as a | |
| | |domain | |
|--------+----------+------------------------------------+---------------|
|344268 |rmudgett |Fix deadlock during dialplan reload.|ASTERISK-18740 |
|--------+----------+------------------------------------+---------------|
| | |only attempt to do stun handling on | |
|344330 |mnicholson|ipv4 or ipv4 mapped to ipv6 |ASTERISK-18490 |
| | |addresses | |
|--------+----------+------------------------------------+---------------|
|344385 |kmoore |Fix several bugs with SDP parsing |ASTERISK-16558 |
| | |and well-formedness of responses | |
|--------+----------+------------------------------------+---------------|
| | |Fix another incorrect case with | |
|344439 |kmoore |meetme's PIN logic and add | |
| | |documentation | |
|--------+----------+------------------------------------+---------------|
| | |Make AMI event AgentCalled get | |
|344536 |rmudgett |CallerID/ConnectedLine info from the|ASTERISK-18152 |
| | |incoming channel. | |
|--------+----------+------------------------------------+---------------|
|344539 |rmudgett |Fix potential deadlock calling | |
| | |ast_call() with channel locks held. | |
|--------+----------+------------------------------------+---------------|
| | |Fix a segmentation fault when using | |
|344608 |jrose |an extension with CID matching and |ASTERISK-18392 |
| | |no CID. | |
|--------+----------+------------------------------------+---------------|
| | |Make CLI "core show channel" not | |
|344661 |rmudgett |hold the channel lock during console|ASTERISK-18571 |
| | |output. | |
|--------+----------+------------------------------------+---------------|
|344715 |rmudgett |Check sip.conf maxforwards parameter| |
| | |for range 1 <= x <= 255. | |
|--------+----------+------------------------------------+---------------|
|344769 |kmoore |Fix regression introduced by SDP | |
| | |fixups | |
|--------+----------+------------------------------------+---------------|
| | |Video format was treated as audio | |
|344823 |mjordan |when removed from the file playback |ASTERISK-18682 |
| | |scheduler | |
|--------+----------+------------------------------------+---------------|
|344835 |wdoekes |Fix bad quoting of multiline mxml |ASTERISK-18852 |
| | |opaque_data that caused invalid xml.| |
|--------+----------+------------------------------------+---------------|
|344837 |wdoekes |Remove unneeded if(params) checks in| |
| | |reqresp_parser. | |
|--------+----------+------------------------------------+---------------|
|344843 |wdoekes |Use __alignof__ instead of sizeof | |
| | |for stringfield length storage. | |
|--------+----------+------------------------------------+---------------|
|344899 |twilson |Don't forget to rescan MOH files for|ASTERISK-18039 |
| | |cached realtime classes | |
|--------+----------+------------------------------------+---------------|
|344965 |irroot |mISDN Round Robin break when no | |
| | |channel is available | |
|--------+----------+------------------------------------+---------------|
|345062 |jrose |Moves voicemail setup password entry|ASTERISK-18282 |
| | |to the end of the setup process. | |
|--------+----------+------------------------------------+---------------|
|345063 |kmoore |Ensure that a null vmexten does not | |
| | |cause a segfault | |
|--------+----------+------------------------------------+---------------|
|345160 |wdoekes |Update reqresp_parser parse_uri |ASTERISK-18572 |
| | |doxygen comments. | |
|--------+----------+------------------------------------+---------------|
|345163 |twilson |Don't read past end of input when | |
| | |calling write() | |
|--------+----------+------------------------------------+---------------|
|345219 |rmudgett |Fix Progress spelling error in |ASTERISK-18857 |
| | |main/pbx.c. | |
|--------+----------+------------------------------------+---------------|
|345273 |rmudgett |Restore SIP DTMF overlap dialing |ASTERISK-17288,|
| | |method. |ASTERISK-18702 |
|--------+----------+------------------------------------+---------------|
|345285 |rmudgett |Make queue log indicate if ADDMEMBER|ASTERISK-18645 |
| | |is paused for AMI and realtime. | |
|--------+----------+------------------------------------+---------------|
|345370 |rmudgett |Fix typo in sig_pri using wrong |ASTERISK-18868 |
| | |structure name. | |
|--------+----------+------------------------------------+---------------|
|345431 |rmudgett |Make FastAGI HANGUP show up in AGI |ASTERISK-18723 |
| | |debug output. | |
|--------+----------+------------------------------------+---------------|
|345487 |jrose |Guarantee messages go into the right|ASTERISK-18245,|
| | |folders with multiple recipients |ASTERISK-18246 |
|--------+----------+------------------------------------+---------------|
|345545 |qwell |Fix documentation of 's' option. | |
|--------+----------+------------------------------------+---------------|
|345546 |rmudgett |Remove dead code since pri_grab() | |
| | |can never fail. | |
|--------+----------+------------------------------------+---------------|
| | |Update the documentation to better | |
|345682 |tilghman |clarify how the existing commands | |
| | |work. | |
|--------+----------+------------------------------------+---------------|
|345828 |twilson |Default to nat=yes; warn when nat in|ASTERISK-18862 |
| | |general and peer differ | |
|--------+----------+------------------------------------+---------------|
|345829 |twilson |Change nat=yes to nat=force_rport in|ASTERISK-18862 |
| | |CHANGES | |
|--------+----------+------------------------------------+---------------|
|345923 |wdoekes |Clarify why the AST_LOG_* macros |ASTERISK-17973 |
| | |exist next to the LOG_* macros. | |
|--------+----------+------------------------------------+---------------|
|345976 |rmudgett |Fix dnsmgr entries to ask for the | |
| | |same address family each time. | |
|--------+----------+------------------------------------+---------------|
|346030 |twilson |Resume playing existing hold music |ASTERISK-18039,|
| | |for cached realtime MOH |ASTERISK-18912 |
|--------+----------+------------------------------------+---------------|
|346086 |kmoore |Fix res_jabber resource leaks | |
|--------+----------+------------------------------------+---------------|
|346144 |wdoekes |Fix ast_str_truncate signedness | |
| | |warning and documentation. | |
|--------+----------+------------------------------------+---------------|
|346147 |wdoekes |Minor cleanup in chan_sip | |
| | |get_msg_text() function. | |
|--------+----------+------------------------------------+---------------|
|346239 |rmudgett |Fix calls to ast_get_ip() not | |
| | |initializing the address family. | |
|--------+----------+------------------------------------+---------------|
| | |Fix regression that 'rtp/rtcp set | |
|346292 |schmidts |debup ip' only works when also a |ASTERISK-18693 |
| | |port was specified. | |
|--------+----------+------------------------------------+---------------|
|346472 |lmadsen |Update queues.conf.sample |ASTERISK-17413 |
| | |documentation. | |
|--------+----------+------------------------------------+---------------|
| | |r346525 | jrose | 2011-11-30 |ASTERISK-18700,|
|346564 |jrose |15:10:38 -0600 (Wed, 30 Nov 2011) | |ASTERISK-18345,|
| | |18 lines |ASTERISK-18342 |
|--------+----------+------------------------------------+---------------|
| | |Change 183 Ringing in sipfrag body | |
|346697 |jrose |to 180 ringing. 183 Ringing isn't |ASTERISK-18925 |
| | |even a thing. | |
|--------+----------+------------------------------------+---------------|
| | |Re-resolve the STUN address if a | |
|346700 |rmudgett |STUN poll fails for |ASTERISK-18327 |
| | |res_stun_monitor. | |
|--------+----------+------------------------------------+---------------|
|346762 |may |process null frame pointer returned |ASTERISK-16697 |
| | |by ast_rtp_instance_read correctly | |
|--------+----------+------------------------------------+---------------|
|346899 |wdoekes |For SIP REGISTER fix domain-only |ASTERISK-18389,|
| | |URIs and domain ACL bypass. |ASTERISK-18741 |
|--------+----------+------------------------------------+---------------|
|346951 |kmoore |Fix chan_jingle/gtalk load | |
| | |regression introduced in r346087 | |
|--------+----------+------------------------------------+---------------|
| | |Resolve duplicate label used in | |
|346954 |jrose |multiple priorities for the same |ASTERISK-18807 |
| | |extension. | |
|--------+----------+------------------------------------+---------------|
|347006 |rmudgett |Restore call progress code for |ASTERISK-18841 |
| | |analog ports. | |
|--------+----------+------------------------------------+---------------|
|347058 |mjordan |Fixed crash from orphaned MWI |ASTERISK-18663 |
| | |subscriptions in chan_sip | |
|--------+----------+------------------------------------+---------------|
|347111 |wdoekes |Move setting of voicemail zonetag |ASTERISK-18838 |
| | |and locale up a bit. | |
|--------+----------+------------------------------------+---------------|
|347131 |wdoekes |Add regression tests for issue | |
| | |ASTERISK-18838. | |
|--------+----------+------------------------------------+---------------|
|347166 |wdoekes |Don't allow transport=tcp when |ASTERISK-18837 |
| | |tcpenable=no. | |
|--------+----------+------------------------------------+---------------|
|347239 |jrose |Documents CHANNEL(musicclass) taking|ASTERISK-18804 |
| | |priority over m([x]) in waitExten | |
|--------+----------+------------------------------------+---------------|
|347292 |rmudgett |Make SIP INFO messages for |ASTERISK-18924 |
| | |dtmf-relay signals case insensitive.| |
|--------+----------+------------------------------------+---------------|
| | |Fix: Meetme recording variables from| |
|347369 |jrose |realtime DB use null entries over |ASTERISK-18873 |
| | |channel variables | |
|--------+----------+------------------------------------+---------------|
| | |Update AMI Getvar and Setvar | |
|347438 |rmudgett |documentation about supplying a |ASTERISK-18958 |
| | |channel name. | |
|--------+----------+------------------------------------+---------------|
|347531 |twilson |Don't crash on INFO automon request |ASTERISK-18805 |
| | |with no channel | |
|--------+----------+------------------------------------+---------------|
|347595 |rmudgett |Mark channel running the h exten |ASTERISK-18811 |
| | |with the soft-hangup flag. | |
|--------+----------+------------------------------------+---------------|
|347718 |wdoekes |Fix regression when using | |
| | |tcpenable=no and tlsenable=yes. | |
|--------+----------+------------------------------------+---------------|
|347811 |rmudgett |Fix some parsing issues in |ASTERISK-18909 |
| | |add_exten_to_pattern_tree(). | |
|--------+----------+------------------------------------+---------------|
|347995 |twilson |Add a separate buffer for SRTCP |ASTERISK-18889 |
| | |packets | |
|--------+----------+------------------------------------+---------------|
| | |Fix possible misshandling of an | |
|348048 |schmidts |incoming SIP response as a peer poke|ASTERISK-18940 |
| | |response. | |
|--------+----------+------------------------------------+---------------|
|348101 |rmudgett |Fix FollowMe CallerID on outgoing |ASTERISK-17557 |
| | |calls. | |
|--------+----------+------------------------------------+---------------|
|348154 |jrose |Document PARKINGSLOT variable in |ASTERISK-16239 |
| | |features.conf.sample | |
|--------+----------+------------------------------------+---------------|
| | |Fix accidental use of tabs instead | |
|348157 |jrose |of spaces from previous | |
| | |features.conf.sample change | |
|--------+----------+------------------------------------+---------------|
| | |Don't clear LOCALSTATIONID before | |
|348212 |mnicholson|sending or receiving. The user may |ASTERISK-18921 |
| | |set that | |
|--------+----------+------------------------------------+---------------|
|348310 |rmudgett |Fix ParkAndAnnounce to pass the | |
| | |CallerID to the announcing channel. | |
|--------+----------+------------------------------------+---------------|
|348362 |rmudgett |Fix crash during CDR update. |ASTERISK-18836 |
|--------+----------+------------------------------------+---------------|
|348401 |rmudgett |Fix cut and past error in |ASTERISK-18836 |
| | |ast_call_forward(). | |
|--------+----------+------------------------------------+---------------|
| | |Clean-up on isle five for | |
|348464 |rmudgett |__ast_request_and_dial() and | |
| | |ast_call_forward(). | |
|--------+----------+------------------------------------+---------------|
|348516 |kpfleming |Correct two flaws in sip.conf.sample| |
| | |related to AST-2011-013. | |
|--------+----------+------------------------------------+---------------|
| | |Fix crashes on other platforms | |
|348647 |rmudgett |caused by interference from Darwin |ASTERISK-18728 |
| | |weak symbol support. | |
|--------+----------+------------------------------------+---------------|
|348735 |rmudgett |Fix chan_iax2 to not report an RDNIS|ASTERISK-17152 |
| | |number if it is blank. | |
|--------+----------+------------------------------------+---------------|
|348833 |twilson |Allow packetization vaules > 127 |ASTERISK-18876 |
|--------+----------+------------------------------------+---------------|
|348888 |mjordan |Fix for memory leaks / cleanup in |ASTERISK-18879 |
| | |cel_pgsql | |
|--------+----------+------------------------------------+---------------|
|348940 |rmudgett |Fix extension state callback |ASTERISK-17760,|
| | |references in chan_sip. |ASTERISK-18844 |
|--------+----------+------------------------------------+---------------|
|348992 |kmoore |Fix missing doc tags found while |ASTERISK-18689 |
| | |fixing ASTERISK-18689 | |
|--------+----------+------------------------------------+---------------|
|349044 |seanbright|In ChanSpy, don't create audiohooks | |
| | |that will never be used. | |
|--------+----------+------------------------------------+---------------|
| | |Once an audiohook is attached to a | |
|349144 |seanbright|channel, we continue to transcode | |
| | |all of the | |
|--------+----------+------------------------------------+---------------|
|349194 |mjordan |Fix timing source dependency issues |ASTERISK-17474 |
| | |with MOH | |
|--------+----------+------------------------------------+---------------|
| | |Use ast_audiohook_write_list_empty | |
|349289 |seanbright|to determine if our lists are empty | |
| | |instead | |
|--------+----------+------------------------------------+---------------|
| | | |ASTERISK-19040,|
| | |Handle AST_CONTROL_UPDATE_RTP_PEER |ASTERISK-19128,|
|349339 |mjordan |frames in local bridge loop |ASTERISK-17725,|
| | | |ASTERISK-18340,|
| | | |ASTERISK-19095 |
|--------+----------+------------------------------------+---------------|
|350588 |mjordan |Create tag for 1.8.9.0-rc2 | |
|--------+----------+------------------------------------+---------------|
|350606 |mjordan |Merged 1.8.9.0-rc2 blockers | |
|--------+----------+------------------------------------+---------------|
|350682 |bebuild |Remove summary files | |
|--------+----------+------------------------------------+---------------|
|350696 |bebuild |Importing release summary for | |
| | |1.8.9.0-rc2 release. | |
|--------+----------+------------------------------------+---------------|
|350728 |mjordan |Updated summaries to proper issues | |
|--------+----------+------------------------------------+---------------|
|352284 |mjordan |Create 1.8.9.0-rc3 | |
|--------+----------+------------------------------------+---------------|
|352286 |mjordan |Commit changes: r349731, r352199, | |
| | |r352014, r351504 | |
|--------+----------+------------------------------------+---------------|
|352344 |bebuild |Updated test results | |
|--------+----------+------------------------------------+---------------|
|352345 |bebuild |Importing release summary for | |
| | |1.8.9.0-rc3 release. | |
+------------------------------------------------------------------------+
----------------------------------------------------------------------
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.
.version | 2
CHANGES | 12
ChangeLog | 31
Makefile.moddir_rules | 4
UPGRADE.txt | 7
addons/chan_ooh323.c | 4
addons/ooh323c/src/dlist.c | 6
addons/ooh323c/src/dlist.h | 2
addons/ooh323c/src/ooGkClient.c | 10
addons/ooh323c/src/ooTimer.c | 6
addons/ooh323c/src/oochannels.c | 4
addons/ooh323c/src/ooh245.c | 17
addons/ooh323c/src/ooh323.c | 1
addons/ooh323c/src/ooq931.c | 181 +++
addons/ooh323c/src/ooq931.h | 8
addons/ooh323c/src/ootypes.h | 3
addons/ooh323c/src/printHandler.c | 4
apps/app_authenticate.c | 23
apps/app_celgenuserevent.c | 4
apps/app_chanspy.c | 56 -
apps/app_confbridge.c | 2
apps/app_dial.c | 2
apps/app_fax.c | 4
apps/app_followme.c | 201 ++-
apps/app_meetme.c | 52 -
apps/app_parkandannounce.c | 19
apps/app_queue.c | 80 -
apps/app_system.c | 4
apps/app_url.c | 2
apps/app_voicemail.c | 332 ++++--
asterisk-1.8.9.0-rc2-summary.html | 60 -
asterisk-1.8.9.0-rc2-summary.txt | 88 -
asterisk-1.8.9.0-rc3-summary.html | 64 +
asterisk-1.8.9.0-rc3-summary.txt | 94 +
autoconf/ast_ext_lib.m4 | 20
bridges/bridge_builtin_features.c | 13
build_tools/cflags.xml | 6
build_tools/embed_modules.xml | 22
build_tools/prep_tarball | 2
cel/cel_pgsql.c | 37
channels/chan_dahdi.c | 57 -
channels/chan_gtalk.c | 20
channels/chan_h323.c | 3
channels/chan_iax2.c | 203 ++-
channels/chan_jingle.c | 38
channels/chan_mgcp.c | 3
channels/chan_misdn.c | 16
channels/chan_sip.c | 1727 +++++++++++++++++++++-------------
channels/chan_skinny.c | 1
channels/chan_unistim.c | 5
channels/sig_analog.c | 17
channels/sig_analog.h | 1
channels/sig_pri.c | 263 ++---
channels/sig_ss7.c | 380 +++++--
channels/sig_ss7.h | 36
channels/sip/include/dialog.h | 9
channels/sip/include/reqresp_parser.h | 14
channels/sip/include/sip.h | 88 -
channels/sip/reqresp_parser.c | 198 +--
codecs/codec_dahdi.c | 1
configs/dbsep.conf.sample | 3
configs/extconfig.conf.sample | 3
configs/features.conf.sample | 2
configs/queues.conf.sample | 11
configs/res_config_mysql.conf.sample | 2
configs/res_ldap.conf.sample | 1
configs/res_stun_monitor.conf.sample | 17
configs/sip.conf.sample | 26
configure.ac | 54 +
contrib/realtime/mysql/sipfriends.sql | 98 -
contrib/realtime/mysql/sippeers.sql | 97 +
doc/appdocsxml.dtd | 2
formats/format_wav.c | 6
funcs/func_callerid.c | 3
funcs/func_cdr.c | 20
funcs/func_dialgroup.c | 2
funcs/func_realtime.c | 4
include/asterisk/acl.h | 25
include/asterisk/autoconfig.h.in | 64 +
include/asterisk/cdr.h | 32
include/asterisk/config.h | 14
include/asterisk/dnsmgr.h | 19
include/asterisk/features.h | 89 +
include/asterisk/frame.h | 2
include/asterisk/jabber.h | 5
include/asterisk/linkedlists.h | 2
include/asterisk/logger.h | 4
include/asterisk/manager.h | 7
include/asterisk/module.h | 9
include/asterisk/pbx.h | 42
include/asterisk/sha1.h | 390 ++++++-
include/asterisk/stringfields.h | 17
include/asterisk/strings.h | 29
include/asterisk/stun.h | 43
include/asterisk/tcptls.h | 7
include/asterisk/utils.h | 53 +
include/asterisk/xmldoc.h | 15
main/acl.c | 15
main/astobj2.c | 20
main/audiohook.c | 4
main/channel.c | 130 +-
main/cli.c | 32
main/config.c | 30
main/db.c | 8
main/dnsmgr.c | 18
main/features.c | 334 +++++-
main/file.c | 56 -
main/loader.c | 9
main/manager.c | 604 +++++++----
main/pbx.c | 543 +++++++---
main/rtp_engine.c | 8
main/sha1.c | 422 ++++----
main/stun.c | 126 +-
main/tcptls.c | 55 -
main/udptl.c | 54 -
main/utils.c | 41
main/xmldoc.c | 108 +-
pbx/pbx_config.c | 2
pbx/pbx_lua.c | 112 +-
pbx/pbx_realtime.c | 1
pbx/pbx_spool.c | 64 +
res/res_agi.c | 16
res/res_config_sqlite.c | 9
res/res_curl.c | 1
res/res_fax.c | 15
res/res_jabber.c | 182 ++-
res/res_jabber.exports.in | 2
res/res_monitor.c | 6
res/res_musiconhold.c | 38
res/res_realtime.c | 8
res/res_rtp_asterisk.c | 130 +-
res/res_rtp_multicast.c | 7
res/res_srtp.c | 10
res/res_stun_monitor.c | 304 +++--
res/res_timing_dahdi.c | 2
res/res_timing_pthread.c | 2
res/res_timing_timerfd.c | 2
tests/test_linkedlists.c | 146 ++
tests/test_netsock2.c | 71 +
utils/utils.xml | 1
140 files changed, 6435 insertions(+), 3101 deletions(-)
----------------------------------------------------------------------

View File

@@ -0,0 +1,141 @@
<!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-1.8.9.3</title></head>
<body>
<h1 align="center"><a name="top">Release Summary</a></h1>
<h3 align="center">asterisk-1.8.9.3</h3>
<h3 align="center">Date: 2012-02-23</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="#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-1.8.9.2.</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>
13 seanbright<br/>
8 pabelanger<br/>
8 rmudgett<br/>
6 mmichelson<br/>
2 kmoore<br/>
2 qwell<br/>
2 twilson<br/>
1 alecdavis<br/>
1 file<br/>
1 may<br/>
1 mjordan<br/>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
<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/1.8?view=revision&revision=354594">354594</a></td><td>mmichelson</td><td>Fix translation path choices.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16821">ASTERISK-16821</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354640">354640</a></td><td>mmichelson</td><td>Remove outdated comment.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354655">354655</a></td><td>kmoore</td><td>Make the config parser remove escaping backslashes</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17121">ASTERISK-17121</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354702">354702</a></td><td>kmoore</td><td>Fix parsing of SIP headers where compact and non-compact headers are mixed</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17192">ASTERISK-17192</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354749">354749</a></td><td>twilson</td><td>Note that CDRs are immutable once a bridge is torn down</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16923">ASTERISK-16923</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354835">354835</a></td><td>rmudgett</td><td>Fix AMI Redirect ExtraChannel not redirecting to the same exten and context.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16974">ASTERISK-16974</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354889">354889</a></td><td>qwell</td><td>Fix a voicemail memory leak with heard/deleted messages.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=354953">354953</a></td><td>rmudgett</td><td>Fix reconnecting to pgsql database after connection loss.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16982">ASTERISK-16982</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355009">355009</a></td><td>file</td><td>Only allow one 'dialplan reload' to execute at a time as otherwise they would share the same common local context list.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355056">355056</a></td><td>rmudgett</td><td>Fix occasional incorrectly delayed call-file execution.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19081">ASTERISK-19081</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355136">355136</a></td><td>may</td><td>call manager_event only if there is not null channel structure</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19298">ASTERISK-19298</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355182">355182</a></td><td>seanbright</td><td>Clear the high order bit from the destination call number before sending.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355228">355228</a></td><td>qwell</td><td>Don't enable sqlite3 CDRs by default in sample configs.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355268">355268</a></td><td>mmichelson</td><td>Properly invert the return of a strncmp call.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355319">355319</a></td><td>rmudgett</td><td>Fix lock typo that should be unlock in cel_sqlite_custom reload.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19356">ASTERISK-19356</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355365">355365</a></td><td>rmudgett</td><td>Fix voicemail problems when using ogg/vorbis.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-16926">ASTERISK-16926</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355448">355448</a></td><td>seanbright</td><td>Use TRUNK_CALL_START as originally intended.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355458">355458</a></td><td>seanbright</td><td>Only use maxtrunkcall and maxnontrunkcall in chan_iax2 if IAX_OLD_FIND is specified.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355529">355529</a></td><td>seanbright</td><td>When IAX2 debugging is enabled, make sure to log 'apathetic' messages too.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355574">355574</a></td><td>rmudgett</td><td>Fix AMI Monitor action without File header converting channel name into filename.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355608">355608</a></td><td>rmudgett</td><td>Fix compile problem when old version of libvorbisfile v1.1.2 is used.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19370">ASTERISK-19370</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355622">355622</a></td><td>seanbright</td><td>Revert a change to audio_audiohook_write_list that had no affect.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355700">355700</a></td><td>pabelanger</td><td>Fix -Werror=unused-but-set-variable compiler error (gcc 4.6.2)</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355701">355701</a></td><td>pabelanger</td><td>Missed a variable</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355711">355711</a></td><td>pabelanger</td><td>Revert 355700 and 355701</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355721">355721</a></td><td>mmichelson</td><td>Revert change to translate.c as it has caused an infinite loop to occur in circumstances.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355732">355732</a></td><td>mmichelson</td><td>Fix regressions with regards to route-set creation on early dialogs.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19358">ASTERISK-19358</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355746">355746</a></td><td>seanbright</td><td>Pass the correct value to ast_timer_set_rate() for IAX2 trunking.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355793">355793</a></td><td>seanbright</td><td>Don't allow trunkfreq to be greater than 1000ms.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355839">355839</a></td><td>pabelanger</td><td>Fix -Werror=unused-but-set-variable compiler error (gcc 4.6.2)</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355850">355850</a></td><td>alecdavis</td><td>push 'outgoing' flag from sig_XXX up to chan_dahdi</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19316">ASTERISK-19316</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355901">355901</a></td><td>seanbright</td><td>Set the length of the ast_sockaddr, so that we can set it's port later.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355904">355904</a></td><td>seanbright</td><td>Add some boilerplate documentation for IAXVAR and IAXPEER.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355949">355949</a></td><td>seanbright</td><td>Change some debug messages from LOG_DEBUG to ast_debug.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355952">355952</a></td><td>seanbright</td><td>This was a LOG_NOTICE, so roll it back.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=355997">355997</a></td><td>seanbright</td><td>Remove spurious warning when 'qualifyfreqnotok' is set successfully.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-17176">ASTERISK-17176</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356107">356107</a></td><td>seanbright</td><td>Make 'iax2 show callnumber usage' output make sense when an IP is passed in.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356214">356214</a></td><td>mjordan</td><td>Fix potential buffer overrun and memory leak when executing "sip show peers"</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19231">ASTERISK-19231</a>, <a href="https://issues.asterisk.org/jira/browse/ASTERISK-19361">ASTERISK-19361</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356290">356290</a></td><td>pabelanger</td><td>Fix -Werror=unused-but-set-variable compiler error (gcc 4.6.2)</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356291">356291</a></td><td>twilson</td><td>Track module use count for res_calendar</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356335">356335</a></td><td>pabelanger</td><td>Add back strsep() function for previous commit</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356337">356337</a></td><td>pabelanger</td><td>Missed one strsep() function</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356430">356430</a></td><td>pabelanger</td><td>Fix -Werror=unused-but-set-variable compiler error (gcc 4.6.2)</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356475">356475</a></td><td>mmichelson</td><td>Fix ACK routing for non-2xx responses.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19389">ASTERISK-19389</a></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/1.8?view=revision&revision=356521">356521</a></td><td>rmudgett</td><td>Fix blind transfer parking issues if the dialed extension is not recognized as a parking extension.</td>
<td><a href="https://issues.asterisk.org/jira/browse/ASTERISK-19322">ASTERISK-19322</a></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>
addons/chan_ooh323.c | 9
apps/app_rpt.c | 69 +----
apps/app_voicemail.c | 23 -
autoconf/ast_c_declare_check.m4 | 31 ++
cel/cel_sqlite3_custom.c | 2
channels/chan_dahdi.c | 12
channels/chan_iax2.c | 62 +++--
channels/chan_sip.c | 113 +++++----
channels/sig_analog.c | 16 -
channels/sig_analog.h | 1
channels/sig_pri.c | 16 -
channels/sig_pri.h | 1
channels/sig_ss7.c | 14 -
channels/sig_ss7.h | 1
configs/cdr_sqlite3_custom.conf.sample | 8
configs/extconfig.conf.sample | 4
configs/iax.conf.sample | 3
configure.ac | 5
formats/format_ogg_vorbis.c | 399 +++++++++++----------------------
funcs/func_cdr.c | 4
include/asterisk/autoconfig.h.in | 16 -
include/asterisk/calendar.h | 2
main/audiohook.c | 4
main/config.c | 4
main/features.c | 81 +++---
main/loader.c | 4
main/manager.c | 7
pbx/pbx_config.c | 10
pbx/pbx_spool.c | 41 ++-
res/res_calendar.c | 2
res/res_config_pgsql.c | 66 +++++
res/res_monitor.c | 22 +
res/res_pktccops.c | 6
33 files changed, 562 insertions(+), 496 deletions(-)
</pre><br/>
<hr/>
</body>
</html>

View File

@@ -0,0 +1,268 @@
Release Summary
asterisk-1.8.9.3
Date: 2012-02-23
<asteriskteam@digium.com>
----------------------------------------------------------------------
Table of Contents
1. Summary
2. Contributors
3. Other Changes
4. 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-1.8.9.2.
----------------------------------------------------------------------
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
13 seanbright
8 pabelanger
8 rmudgett
6 mmichelson
2 kmoore
2 qwell
2 twilson
1 alecdavis
1 file
1 may
1 mjordan
----------------------------------------------------------------------
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 |
|--------+----------+------------------------------------+---------------|
|354594 |mmichelson|Fix translation path choices. |ASTERISK-16821 |
|--------+----------+------------------------------------+---------------|
|354640 |mmichelson|Remove outdated comment. | |
|--------+----------+------------------------------------+---------------|
|354655 |kmoore |Make the config parser remove |ASTERISK-17121 |
| | |escaping backslashes | |
|--------+----------+------------------------------------+---------------|
| | |Fix parsing of SIP headers where | |
|354702 |kmoore |compact and non-compact headers are |ASTERISK-17192 |
| | |mixed | |
|--------+----------+------------------------------------+---------------|
|354749 |twilson |Note that CDRs are immutable once a |ASTERISK-16923 |
| | |bridge is torn down | |
|--------+----------+------------------------------------+---------------|
| | |Fix AMI Redirect ExtraChannel not | |
|354835 |rmudgett |redirecting to the same exten and |ASTERISK-16974 |
| | |context. | |
|--------+----------+------------------------------------+---------------|
|354889 |qwell |Fix a voicemail memory leak with | |
| | |heard/deleted messages. | |
|--------+----------+------------------------------------+---------------|
|354953 |rmudgett |Fix reconnecting to pgsql database |ASTERISK-16982 |
| | |after connection loss. | |
|--------+----------+------------------------------------+---------------|
| | |Only allow one 'dialplan reload' to | |
|355009 |file |execute at a time as otherwise they | |
| | |would share the same common local | |
| | |context list. | |
|--------+----------+------------------------------------+---------------|
|355056 |rmudgett |Fix occasional incorrectly delayed |ASTERISK-19081 |
| | |call-file execution. | |
|--------+----------+------------------------------------+---------------|
|355136 |may |call manager_event only if there is |ASTERISK-19298 |
| | |not null channel structure | |
|--------+----------+------------------------------------+---------------|
| | |Clear the high order bit from the | |
|355182 |seanbright|destination call number before | |
| | |sending. | |
|--------+----------+------------------------------------+---------------|
|355228 |qwell |Don't enable sqlite3 CDRs by default| |
| | |in sample configs. | |
|--------+----------+------------------------------------+---------------|
|355268 |mmichelson|Properly invert the return of a | |
| | |strncmp call. | |
|--------+----------+------------------------------------+---------------|
|355319 |rmudgett |Fix lock typo that should be unlock |ASTERISK-19356 |
| | |in cel_sqlite_custom reload. | |
|--------+----------+------------------------------------+---------------|
|355365 |rmudgett |Fix voicemail problems when using |ASTERISK-16926 |
| | |ogg/vorbis. | |
|--------+----------+------------------------------------+---------------|
|355448 |seanbright|Use TRUNK_CALL_START as originally | |
| | |intended. | |
|--------+----------+------------------------------------+---------------|
| | |Only use maxtrunkcall and | |
|355458 |seanbright|maxnontrunkcall in chan_iax2 if | |
| | |IAX_OLD_FIND is specified. | |
|--------+----------+------------------------------------+---------------|
| | |When IAX2 debugging is enabled, make| |
|355529 |seanbright|sure to log 'apathetic' messages | |
| | |too. | |
|--------+----------+------------------------------------+---------------|
| | |Fix AMI Monitor action without File | |
|355574 |rmudgett |header converting channel name into | |
| | |filename. | |
|--------+----------+------------------------------------+---------------|
|355608 |rmudgett |Fix compile problem when old version|ASTERISK-19370 |
| | |of libvorbisfile v1.1.2 is used. | |
|--------+----------+------------------------------------+---------------|
| | |Revert a change to | |
|355622 |seanbright|audio_audiohook_write_list that had | |
| | |no affect. | |
|--------+----------+------------------------------------+---------------|
|355700 |pabelanger|Fix -Werror=unused-but-set-variable | |
| | |compiler error (gcc 4.6.2) | |
|--------+----------+------------------------------------+---------------|
|355701 |pabelanger|Missed a variable | |
|--------+----------+------------------------------------+---------------|
|355711 |pabelanger|Revert 355700 and 355701 | |
|--------+----------+------------------------------------+---------------|
| | |Revert change to translate.c as it | |
|355721 |mmichelson|has caused an infinite loop to occur| |
| | |in circumstances. | |
|--------+----------+------------------------------------+---------------|
|355732 |mmichelson|Fix regressions with regards to |ASTERISK-19358 |
| | |route-set creation on early dialogs.| |
|--------+----------+------------------------------------+---------------|
| | |Pass the correct value to | |
|355746 |seanbright|ast_timer_set_rate() for IAX2 | |
| | |trunking. | |
|--------+----------+------------------------------------+---------------|
|355793 |seanbright|Don't allow trunkfreq to be greater | |
| | |than 1000ms. | |
|--------+----------+------------------------------------+---------------|
|355839 |pabelanger|Fix -Werror=unused-but-set-variable | |
| | |compiler error (gcc 4.6.2) | |
|--------+----------+------------------------------------+---------------|
|355850 |alecdavis |push 'outgoing' flag from sig_XXX up|ASTERISK-19316 |
| | |to chan_dahdi | |
|--------+----------+------------------------------------+---------------|
|355901 |seanbright|Set the length of the ast_sockaddr, | |
| | |so that we can set it's port later. | |
|--------+----------+------------------------------------+---------------|
|355904 |seanbright|Add some boilerplate documentation | |
| | |for IAXVAR and IAXPEER. | |
|--------+----------+------------------------------------+---------------|
|355949 |seanbright|Change some debug messages from | |
| | |LOG_DEBUG to ast_debug. | |
|--------+----------+------------------------------------+---------------|
|355952 |seanbright|This was a LOG_NOTICE, so roll it | |
| | |back. | |
|--------+----------+------------------------------------+---------------|
| | |Remove spurious warning when | |
|355997 |seanbright|'qualifyfreqnotok' is set |ASTERISK-17176 |
| | |successfully. | |
|--------+----------+------------------------------------+---------------|
| | |Make 'iax2 show callnumber usage' | |
|356107 |seanbright|output make sense when an IP is | |
| | |passed in. | |
|--------+----------+------------------------------------+---------------|
| | |Fix potential buffer overrun and |ASTERISK-19231,|
|356214 |mjordan |memory leak when executing "sip show|ASTERISK-19361 |
| | |peers" | |
|--------+----------+------------------------------------+---------------|
|356290 |pabelanger|Fix -Werror=unused-but-set-variable | |
| | |compiler error (gcc 4.6.2) | |
|--------+----------+------------------------------------+---------------|
|356291 |twilson |Track module use count for | |
| | |res_calendar | |
|--------+----------+------------------------------------+---------------|
|356335 |pabelanger|Add back strsep() function for | |
| | |previous commit | |
|--------+----------+------------------------------------+---------------|
|356337 |pabelanger|Missed one strsep() function | |
|--------+----------+------------------------------------+---------------|
|356430 |pabelanger|Fix -Werror=unused-but-set-variable | |
| | |compiler error (gcc 4.6.2) | |
|--------+----------+------------------------------------+---------------|
|356475 |mmichelson|Fix ACK routing for non-2xx |ASTERISK-19389 |
| | |responses. | |
|--------+----------+------------------------------------+---------------|
| | |Fix blind transfer parking issues if| |
|356521 |rmudgett |the dialed extension is not |ASTERISK-19322 |
| | |recognized as a parking extension. | |
+------------------------------------------------------------------------+
----------------------------------------------------------------------
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.
addons/chan_ooh323.c | 9
apps/app_rpt.c | 69 +----
apps/app_voicemail.c | 23 -
autoconf/ast_c_declare_check.m4 | 31 ++
cel/cel_sqlite3_custom.c | 2
channels/chan_dahdi.c | 12
channels/chan_iax2.c | 62 +++--
channels/chan_sip.c | 113 +++++----
channels/sig_analog.c | 16 -
channels/sig_analog.h | 1
channels/sig_pri.c | 16 -
channels/sig_pri.h | 1
channels/sig_ss7.c | 14 -
channels/sig_ss7.h | 1
configs/cdr_sqlite3_custom.conf.sample | 8
configs/extconfig.conf.sample | 4
configs/iax.conf.sample | 3
configure.ac | 5
formats/format_ogg_vorbis.c | 399 +++++++++++----------------------
funcs/func_cdr.c | 4
include/asterisk/autoconfig.h.in | 16 -
include/asterisk/calendar.h | 2
main/audiohook.c | 4
main/config.c | 4
main/features.c | 81 +++---
main/loader.c | 4
main/manager.c | 7
pbx/pbx_config.c | 10
pbx/pbx_spool.c | 41 ++-
res/res_calendar.c | 2
res/res_config_pgsql.c | 66 +++++
res/res_monitor.c | 22 +
res/res_pktccops.c | 6
33 files changed, 562 insertions(+), 496 deletions(-)
----------------------------------------------------------------------

View File

@@ -1,7 +1,7 @@
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2006, Digium, Inc.
* Copyright (C) 1999 - 2012, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
@@ -374,6 +374,43 @@ static const struct ast_channel_tech agent_tech = {
.set_base_channel = agent_set_base_channel,
};
/*!
* \brief Locks the owning channel for a LOCKED pvt while obeying locking order. The pvt
* must enter this function locked and will be returned locked, but this function will
* unlock the pvt for a short time, so it can't be used while expecting the pvt to remain
* static. If function returns a non NULL channel, it will need to be unlocked and
* unrefed once it is no longer needed.
*
* \param pvt Pointer to the LOCKED agent_pvt for which the owner is needed
* \ret locked channel which owns the pvt at the time of completion. NULL if not available.
*/
static struct ast_channel *agent_lock_owner(struct agent_pvt *pvt)
{
struct ast_channel *owner;
for (;;) {
if (!pvt->owner) { /* No owner. Nothing to do. */
return NULL;
}
/* If we don't ref the owner, it could be killed when we unlock the pvt. */
owner = ast_channel_ref(pvt->owner);
/* Locking order requires us to lock channel, then pvt. */
ast_mutex_unlock(&pvt->lock);
ast_channel_lock(owner);
ast_mutex_lock(&pvt->lock);
/* Check if owner changed during pvt unlock period */
if (owner != pvt->owner) { /* Channel changed. Unref and do another pass. */
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
} else { /* Channel stayed the same. Return it. */
return owner;
}
}
}
/*!
* Adds an agent to the global list of agents.
*
@@ -554,7 +591,11 @@ static struct ast_frame *agent_read(struct ast_channel *ast)
struct ast_frame *f = NULL;
static struct ast_frame answer_frame = { AST_FRAME_CONTROL, { AST_CONTROL_ANSWER } };
int cur_time = time(NULL);
struct ast_channel *owner;
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
CHECK_FORMATS(ast, p);
if (!p->start) {
p->start = cur_time;
@@ -584,13 +625,11 @@ static struct ast_frame *agent_read(struct ast_channel *ast)
int howlong = cur_time - p->start;
if (p->autologoff && (howlong >= p->autologoff)) {
ast_log(LOG_NOTICE, "Agent '%s' didn't answer/confirm within %d seconds (waited %d)\n", p->name, p->autologoff, howlong);
if (p->owner || p->chan) {
while (p->owner && ast_channel_trylock(p->owner)) {
DEADLOCK_AVOIDANCE(&p->lock);
}
if (p->owner) {
ast_softhangup(p->owner, AST_SOFTHANGUP_EXPLICIT);
ast_channel_unlock(p->owner);
if (owner || p->chan) {
if (owner) {
ast_softhangup(owner, AST_SOFTHANGUP_EXPLICIT);
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
while (p->chan && ast_channel_trylock(p->chan)) {
@@ -652,6 +691,11 @@ static struct ast_frame *agent_read(struct ast_channel *ast)
}
}
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
CLEANUP(ast,p);
if (p->chan && !p->chan->_bridge) {
if (strcasecmp(p->chan->tech->type, "Local")) {
@@ -887,6 +931,14 @@ int agent_set_base_channel(struct ast_channel *chan, struct ast_channel *base)
static int agent_hangup(struct ast_channel *ast)
{
struct agent_pvt *p = ast->tech_pvt;
struct ast_channel *indicate_chan = NULL;
char *tmp_moh; /* moh buffer for indicating after unlocking p */
if (p->pending) {
AST_LIST_LOCK(&agents);
AST_LIST_REMOVE(&agents, p, list);
AST_LIST_UNLOCK(&agents);
}
ast_mutex_lock(&p->lock);
p->owner = NULL;
@@ -909,7 +961,7 @@ static int agent_hangup(struct ast_channel *ast)
if (p->start && (ast->_state != AST_STATE_UP)) {
p->start = 0;
} else
p->start = 0;
p->start = 0;
if (p->chan) {
p->chan->_bridge = NULL;
/* If they're dead, go ahead and hang up on the agent now */
@@ -918,15 +970,21 @@ static int agent_hangup(struct ast_channel *ast)
ast_softhangup(p->chan, AST_SOFTHANGUP_EXPLICIT);
ast_channel_unlock(p->chan);
} else if (p->loginstart) {
ast_channel_lock(p->chan);
ast_indicate_data(p->chan, AST_CONTROL_HOLD,
S_OR(p->moh, NULL),
!ast_strlen_zero(p->moh) ? strlen(p->moh) + 1 : 0);
ast_channel_unlock(p->chan);
indicate_chan = ast_channel_ref(p->chan);
tmp_moh = ast_strdupa(p->moh);
}
}
ast_mutex_unlock(&p->lock);
if (indicate_chan) {
ast_channel_lock(indicate_chan);
ast_indicate_data(indicate_chan, AST_CONTROL_HOLD,
S_OR(tmp_moh, NULL),
!ast_strlen_zero(tmp_moh) ? strlen(tmp_moh) + 1 : 0);
ast_channel_unlock(indicate_chan);
indicate_chan = ast_channel_unref(indicate_chan);
}
/* Only register a device state change if the agent is still logged in */
if (!p->loginstart) {
p->logincallerid[0] = '\0';
@@ -934,11 +992,6 @@ static int agent_hangup(struct ast_channel *ast)
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Agent/%s", p->agent);
}
if (p->pending) {
AST_LIST_LOCK(&agents);
AST_LIST_REMOVE(&agents, p, list);
AST_LIST_UNLOCK(&agents);
}
if (p->abouttograb) {
/* Let the "about to grab" thread know this isn't valid anymore, and let it
kill it later */
@@ -1491,6 +1544,8 @@ static force_inline int powerof(unsigned int d)
/*!
* Lists agents and their status to the Manager API.
* It is registered on load_module() and it gets called by the manager backend.
* This function locks both the pvt and the channel that owns it for a while, but
* does not keep these locks.
* \param s
* \param m
* \returns
@@ -1513,7 +1568,9 @@ static int action_agents(struct mansession *s, const struct message *m)
astman_send_ack(s, m, "Agents will follow");
AST_LIST_LOCK(&agents);
AST_LIST_TRAVERSE(&agents, p, list) {
ast_mutex_lock(&p->lock);
struct ast_channel *owner;
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
/* Status Values:
AGENT_LOGGEDOFF - Agent isn't logged in
@@ -1528,16 +1585,14 @@ static int action_agents(struct mansession *s, const struct message *m)
if (p->chan) {
loginChan = ast_strdupa(p->chan->name);
if (p->owner && p->owner->_bridge) {
if (owner && owner->_bridge) {
talkingto = S_COR(p->chan->caller.id.number.valid,
p->chan->caller.id.number.str, "n/a");
ast_channel_lock(p->owner);
if ((bridge = ast_bridged_channel(p->owner))) {
if ((bridge = ast_bridged_channel(owner))) {
talkingtoChan = ast_strdupa(bridge->name);
} else {
talkingtoChan = "n/a";
}
ast_channel_unlock(p->owner);
status = "AGENT_ONCALL";
} else {
talkingto = "n/a";
@@ -1551,6 +1606,11 @@ static int action_agents(struct mansession *s, const struct message *m)
status = "AGENT_LOGGEDOFF";
}
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
astman_append(s, "Event: Agents\r\n"
"Agent: %s\r\n"
"Name: %s\r\n"
@@ -1582,14 +1642,14 @@ static int agent_logoff(const char *agent, int soft)
ret = 0;
if (p->owner || p->chan) {
if (!soft) {
struct ast_channel *owner;
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
while (p->owner && ast_channel_trylock(p->owner)) {
DEADLOCK_AVOIDANCE(&p->lock);
}
if (p->owner) {
ast_softhangup(p->owner, AST_SOFTHANGUP_EXPLICIT);
ast_channel_unlock(p->owner);
if (owner) {
ast_softhangup(owner, AST_SOFTHANGUP_EXPLICIT);
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
while (p->chan && ast_channel_trylock(p->chan)) {
@@ -1726,7 +1786,9 @@ static char *agents_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
AST_LIST_LOCK(&agents);
AST_LIST_TRAVERSE(&agents, p, list) {
struct ast_channel *owner;
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
if (p->pending) {
if (p->group)
ast_cli(a->fd, "-- Pending call to group %d\n", powerof(p->group));
@@ -1739,10 +1801,11 @@ static char *agents_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
username[0] = '\0';
if (p->chan) {
snprintf(location, sizeof(location), "logged in on %s", p->chan->name);
if (p->owner && ast_bridged_channel(p->owner))
if (owner && ast_bridged_channel(owner)) {
snprintf(talkingto, sizeof(talkingto), " talking to %s", ast_bridged_channel(p->owner)->name);
else
} else {
strcpy(talkingto, " is idle");
}
online_agents++;
} else {
strcpy(location, "not logged in");
@@ -1755,6 +1818,11 @@ static char *agents_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
username, location, talkingto, music);
count_agents++;
}
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
ast_mutex_unlock(&p->lock);
}
AST_LIST_UNLOCK(&agents);
@@ -1795,21 +1863,32 @@ static char *agents_show_online(struct ast_cli_entry *e, int cmd, struct ast_cli
AST_LIST_LOCK(&agents);
AST_LIST_TRAVERSE(&agents, p, list) {
struct ast_channel *owner;
agent_status = 0; /* reset it to offline */
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
if (!ast_strlen_zero(p->name))
snprintf(username, sizeof(username), "(%s) ", p->name);
else
username[0] = '\0';
if (p->chan) {
snprintf(location, sizeof(location), "logged in on %s", p->chan->name);
if (p->owner && ast_bridged_channel(p->owner))
snprintf(talkingto, sizeof(talkingto), " talking to %s", ast_bridged_channel(p->owner)->name);
else
if (owner && ast_bridged_channel(owner)) {
snprintf(talkingto, sizeof(talkingto), " talking to %s", ast_bridged_channel(owner)->name);
} else {
strcpy(talkingto, " is idle");
}
agent_status = 1;
online_agents++;
}
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
if (!ast_strlen_zero(p->moh))
snprintf(music, sizeof(music), " (musiconhold is '%s')", p->moh);
if (agent_status)
@@ -2381,12 +2460,16 @@ static int agents_data_provider_get(const struct ast_data_search *search,
AST_LIST_LOCK(&agents);
AST_LIST_TRAVERSE(&agents, p, list) {
struct ast_channel *owner;
data_agent = ast_data_add_node(data_root, "agent");
if (!data_agent) {
continue;
}
ast_mutex_lock(&p->lock);
owner = agent_lock_owner(p);
if (!(p->pending)) {
ast_data_add_str(data_agent, "id", p->agent);
ast_data_add_structure(agent_pvt, data_agent, p);
@@ -2397,17 +2480,25 @@ static int agents_data_provider_get(const struct ast_data_search *search,
if (!data_channel) {
ast_mutex_unlock(&p->lock);
ast_data_remove_node(data_root, data_agent);
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
continue;
}
ast_channel_data_add_structure(data_channel, p->chan, 0);
if (p->owner && ast_bridged_channel(p->owner)) {
if (owner && ast_bridged_channel(owner)) {
data_talkingto = ast_data_add_node(data_agent, "talkingto");
if (!data_talkingto) {
ast_mutex_unlock(&p->lock);
ast_data_remove_node(data_root, data_agent);
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
continue;
}
ast_channel_data_add_structure(data_talkingto, ast_bridged_channel(p->owner), 0);
ast_channel_data_add_structure(data_talkingto, ast_bridged_channel(owner), 0);
}
} else {
ast_data_add_node(data_agent, "talkingto");
@@ -2415,6 +2506,12 @@ static int agents_data_provider_get(const struct ast_data_search *search,
}
ast_data_add_str(data_agent, "musiconhold", p->moh);
}
if (owner) {
ast_channel_unlock(owner);
owner = ast_channel_unref(owner);
}
ast_mutex_unlock(&p->lock);
/* if this agent doesn't match remove the added agent. */

View File

@@ -1269,7 +1269,7 @@ static int auto_congest(const void *arg);
static struct sip_pvt *find_call(struct sip_request *req, struct ast_sockaddr *addr, const int intended_method);
static void free_old_route(struct sip_route *route);
static void list_route(struct sip_route *route);
static void build_route(struct sip_pvt *p, struct sip_request *req, int backwards);
static void build_route(struct sip_pvt *p, struct sip_request *req, int backwards, int resp);
static enum check_auth_result register_verify(struct sip_pvt *p, struct ast_sockaddr *addr,
struct sip_request *req, const char *uri);
static struct sip_pvt *get_sip_pvt_byid_locked(const char *callid, const char *totag, const char *fromtag);
@@ -9122,6 +9122,10 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
/* Ensure RTCP is enabled since it may be inactive
if we're coming back from a T.38 session */
ast_rtp_instance_set_prop(p->rtp, AST_RTP_PROPERTY_RTCP, 1);
/* Ensure audio RTCP reads are enabled */
if (p->owner) {
ast_channel_set_fd(p->owner, 1, ast_rtp_instance_fd(p->rtp, 1));
}
if (ast_test_flag(&p->flags[0], SIP_DTMF) == SIP_DTMF_AUTO) {
ast_clear_flag(&p->flags[0], SIP_DTMF);
@@ -9138,6 +9142,10 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
} else if (udptlportno > 0) {
if (debug)
ast_verbose("Got T.38 Re-invite without audio. Keeping RTP active during T.38 session.\n");
/* Prevent audio RTCP reads */
if (p->owner) {
ast_channel_set_fd(p->owner, 1, -1);
}
/* Silence RTCP while audio RTP is inactive */
ast_rtp_instance_set_prop(p->rtp, AST_RTP_PROPERTY_RTCP, 0);
} else {
@@ -10246,7 +10254,15 @@ static int reqprep(struct sip_request *req, struct sip_pvt *p, int sipmethod, in
snprintf(tmp, sizeof(tmp), "%d %s", seqno, sip_methods[sipmethod].text);
add_header(req, "Via", p->via);
if (p->route) {
/*
* Use the learned route set unless this is a CANCEL on an ACK for a non-2xx
* 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) {
set_destination(p, p->route->hop);
add_route(req, is_strict ? p->route->next : p->route);
}
@@ -13385,15 +13401,15 @@ static int transmit_request(struct sip_pvt *p, int sipmethod, int seqno, enum xm
{
struct sip_request resp;
if (sipmethod == SIP_ACK) {
p->invitestate = INV_CONFIRMED;
}
reqprep(&resp, p, sipmethod, seqno, newbranch);
if (sipmethod == SIP_CANCEL && p->answered_elsewhere) {
add_header(&resp, "Reason", "SIP;cause=200;text=\"Call completed elsewhere\"");
}
if (sipmethod == SIP_ACK) {
p->invitestate = INV_CONFIRMED;
}
return send_request(p, &resp, reliable, seqno ? seqno : p->ocseq);
}
@@ -13958,8 +13974,9 @@ static void list_route(struct sip_route *route)
}
}
/*! \brief Build route list from Record-Route header */
static void build_route(struct sip_pvt *p, struct sip_request *req, int backwards)
/*! \brief Build route list from Record-Route header
\param resp the SIP response code or 0 for a request */
static void build_route(struct sip_pvt *p, struct sip_request *req, int backwards, int resp)
{
struct sip_route *thishop, *head, *tail;
int start = 0;
@@ -13977,9 +13994,12 @@ static void build_route(struct sip_pvt *p, struct sip_request *req, int backward
p->route = NULL;
}
/* We only want to create the route set the first time this is called */
p->route_persistent = 1;
/* We only want to create the route set the first time this is called except
it is called from a provisional response.*/
if ((resp < 100) || (resp > 199)) {
p->route_persistent = 1;
}
/* Build a tailq, then assign it to p->route when done.
* If backwards, we add entries from the head so they end up
* in reverse order. However, we do need to maintain a correct
@@ -18520,7 +18540,8 @@ static void handle_request_info(struct sip_pvt *p, struct sip_request *req)
/* Need to check the media/type */
if (!strcasecmp(c, "application/dtmf-relay") ||
!strcasecmp(c, "application/vnd.nortelnetworks.digits")) {
!strcasecmp(c, "application/vnd.nortelnetworks.digits") ||
!strcasecmp(c, "application/dtmf")) {
unsigned int duration = 0;
if (!p->owner) { /* not a PBX call */
@@ -18529,91 +18550,62 @@ static void handle_request_info(struct sip_pvt *p, struct sip_request *req)
return;
}
/* Try getting the "signal=" part */
if (ast_strlen_zero(c = get_body(req, "Signal", '=')) && ast_strlen_zero(c = get_body(req, "d", '='))) {
ast_log(LOG_WARNING, "Unable to retrieve DTMF signal from INFO message from %s\n", p->callid);
transmit_response(p, "200 OK", req); /* Should return error */
return;
/* If dtmf-relay or vnd.nortelnetworks.digits, parse the signal and duration;
* otherwise use the body as the signal */
if (strcasecmp(c, "application/dtmf")) {
const char *msg_body;
if ( ast_strlen_zero(msg_body = get_body(req, "Signal", '='))
&& ast_strlen_zero(msg_body = get_body(req, "d", '='))) {
ast_log(LOG_WARNING, "Unable to retrieve DTMF signal for INFO message on "
"call %s\n", p->callid);
transmit_response(p, "200 OK", req);
return;
}
ast_copy_string(buf, msg_body, sizeof(buf));
if (!ast_strlen_zero((msg_body = get_body(req, "Duration", '=')))) {
sscanf(msg_body, "%30u", &duration);
}
} else {
ast_copy_string(buf, c, sizeof(buf));
/* Type is application/dtmf, simply use what's in the message body */
get_msg_text(buf, sizeof(buf), req);
}
if (!ast_strlen_zero((c = get_body(req, "Duration", '='))))
duration = atoi(c);
if (!duration)
duration = 100; /* 100 ms */
/* An empty message body requires us to send a 200 OK */
if (ast_strlen_zero(buf)) {
transmit_response(p, "200 OK", req);
return;
}
if ('0' <= buf[0] && buf[0] <= '9') {
event = buf[0] - '0';
} else if (buf[0] == '*') {
if (!duration) {
duration = 100; /* 100 ms */
}
if (buf[0] == '*') {
event = 10;
} else if (buf[0] == '#') {
event = 11;
} else if (buf[0] == '!') {
event = 16;
} else if ('A' <= buf[0] && buf[0] <= 'D') {
event = 12 + buf[0] - 'A';
} else if ('a' <= buf[0] && buf[0] <= 'd') {
event = 12 + buf[0] - 'a';
} else if (buf[0] == '!') {
event = 16;
} else {
/* Unknown digit */
event = 0;
} else if ((sscanf(buf, "%30u", &event) != 1) || event > 16) {
ast_log(AST_LOG_WARNING, "Unable to convert DTMF event signal code to a valid "
"value for INFO message on call %s\n", p->callid);
transmit_response(p, "200 OK", req);
return;
}
if (event == 16) {
/* send a FLASH event */
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_FLASH, } };
ast_queue_frame(p->owner, &f);
if (sipdebug)
if (sipdebug) {
ast_verbose("* DTMF-relay event received: FLASH\n");
} else {
/* send a DTMF event */
struct ast_frame f = { AST_FRAME_DTMF, };
if (event < 10) {
f.subclass.integer = '0' + event;
} else if (event == 10) {
f.subclass.integer = '*';
} else if (event == 11) {
f.subclass.integer = '#';
} else if (event < 16) {
f.subclass.integer = 'A' + (event - 12);
}
f.len = duration;
ast_queue_frame(p->owner, &f);
if (sipdebug)
ast_verbose("* DTMF-relay event received: %c\n", (int) f.subclass.integer);
}
transmit_response(p, "200 OK", req);
return;
} else if (!strcasecmp(c, "application/dtmf")) {
/*! \todo Note: Doesn't read the duration of the DTMF. Should be fixed. */
unsigned int duration = 0;
if (!p->owner) { /* not a PBX call */
transmit_response(p, "481 Call leg/transaction does not exist", req);
sip_scheddestroy(p, DEFAULT_TRANS_TIMEOUT);
return;
}
get_msg_text(buf, sizeof(buf), req);
duration = 100; /* 100 ms */
if (ast_strlen_zero(buf)) {
transmit_response(p, "200 OK", req);
return;
}
event = atoi(buf);
if (event == 16) {
/* send a FLASH event */
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_FLASH }, };
ast_queue_frame(p->owner, &f);
if (sipdebug)
ast_verbose("* DTMF-relay event received: FLASH\n");
} else {
/* send a DTMF event */
struct ast_frame f = { AST_FRAME_DTMF, };
@@ -18623,20 +18615,17 @@ static void handle_request_info(struct sip_pvt *p, struct sip_request *req)
f.subclass.integer = '*';
} else if (event == 11) {
f.subclass.integer = '#';
} else if (event < 16) {
f.subclass.integer = 'A' + (event - 12);
} else {
/* Unknown digit. */
f.subclass.integer = '0';
f.subclass.integer = 'A' + (event - 12);
}
f.len = duration;
ast_queue_frame(p->owner, &f);
if (sipdebug)
if (sipdebug) {
ast_verbose("* DTMF-relay event received: %c\n", (int) f.subclass.integer);
}
}
transmit_response(p, "200 OK", req);
return;
} else if (!strcasecmp(c, "application/media_control+xml")) {
/* Eh, we'll just assume it's a fast picture update for now */
if (p->owner)
@@ -19805,7 +19794,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
* */
parse_ok_contact(p, req);
if (!reinvite) {
build_route(p, req, 1);
build_route(p, req, 1, resp);
}
if (!req->ignore && p->owner) {
if (get_rpid(p, req)) {
@@ -19855,7 +19844,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
* */
parse_ok_contact(p, req);
if (!reinvite) {
build_route(p, req, 1);
build_route(p, req, 1, resp);
}
if (!req->ignore && p->owner) {
struct ast_party_redirecting redirecting;
@@ -19881,7 +19870,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
* */
parse_ok_contact(p, req);
if (!reinvite) {
build_route(p, req, 1);
build_route(p, req, 1, resp);
}
if (!req->ignore && p->owner) {
if (get_rpid(p, req)) {
@@ -19981,7 +19970,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest
parse_ok_contact(p, req);
/* Save Record-Route for any later requests we make on this dialogue */
if (!reinvite)
build_route(p, req, 1);
build_route(p, req, 1, resp);
if(set_address_from_contact(p)) {
/* Bad contact - we don't know how to reach this device */
@@ -22511,7 +22500,7 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
*recount = 1;
/* Save Record-Route for any later requests we make on this dialogue */
build_route(p, req, 0);
build_route(p, req, 0, 0);
if (c) {
ast_party_redirecting_init(&redirecting);
@@ -24393,7 +24382,7 @@ static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req,
if (sipdebug)
ast_debug(4, "Initializing initreq for method %s - callid %s\n", sip_methods[req->method].text, p->callid);
check_via(p, req);
build_route(p, req, 0);
build_route(p, req, 0, 0);
} else if (req->debug && req->ignore)
ast_verbose("Ignoring this SUBSCRIBE request\n");