[svn-commits] junky: branch junky/cli-tls r203109 - /team/junky/cli-tls/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 24 23:58:55 CDT 2009


Author: junky
Date: Wed Jun 24 23:58:52 2009
New Revision: 203109

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=203109
Log:
Merged revisions 202337,202343,202410,202415,202417,202497,202570,202574,202603,202672,202753,202755,202761,202804,202840-202841,202887,202889,202925,202967,203037 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r202337 | mmichelson | 2009-06-22 10:35:09 -0400 (Mon, 22 Jun 2009) | 31 lines
  
  Merged revisions 202336 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202336 | mmichelson | 2009-06-22 09:34:05 -0500 (Mon, 22 Jun 2009) | 25 lines
    
    Fix a possible infinite loop in SDP parsing during glare situation.
    
    There was a while loop in get_ip_and_port_from_sdp which was controlled
    by a call to get_sdp_iterate. The loop would exit either if what we were
    searching for was found or if the return was NULL. The problem is that
    get_sdp_iterate never returns NULL. This means that if what we were searching
    for was not present, the loop would run infinitely. This modification of the
    loop fixes the problem.
    
    (closes issue #15213)
    Reported by: schmidts
    
    (closes issue #15349)
    Reported by: samy
    
    (closes issue #14464)
    Reported by: pj
    
    (closes issue #15345)
    Reported by: aragon
    Patches:
          sip_inf_loop.patch uploaded by mmichelson (license 60)
    Tested by: aragon
  ........
................
  r202343 | mmichelson | 2009-06-22 10:58:24 -0400 (Mon, 22 Jun 2009) | 36 lines
  
  Merged revisions 202341-202342 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202341 | mmichelson | 2009-06-22 09:42:55 -0500 (Mon, 22 Jun 2009) | 26 lines
    
    Fix a situation in which Asterisk would not stop retransmitting 487s.
    
    If a CANCEL were received by Asterisk, we would send a 487 in response
    to the original INVITE and a 200 OK for the CANCEL. If there were a network
    hiccup which caused the 200 OK and the 487 to be lost, then the UA communicating
    with Asterisk may try to retransmit its CANCEL. Asterisk's response to this used
    to be to try sending another 487 to the canceled INVITE and another 200 OK to the
    CANCEL.
    
    The problem here is that the originally-sent 487 was sent "reliably" meaning that
    it will be retransmitted until it is received properly. So when we receive the second
    CANCEL it is likely that the first batch of 487s we sent is still going strong and
    reaches the UA. The result was that the second set of 487s would be retransmitted
    constantly until the maximum number of retries had been reached.
    
    The fix for this is that if we receive a second CANCEL for an INVITE, then we cancel
    the retransmission of the first set of 487s and start a second set. This causes the
    dialog to be terminated reasonably.
    
    (closes issue #14584)
    Reported by: klaus3000
    Patches:
          14584_v2.patch uploaded by mmichelson (license 60)
    Tested by: klaus3000
  ........
    r202342 | mmichelson | 2009-06-22 09:44:58 -0500 (Mon, 22 Jun 2009) | 3 lines
    
    Remove an extra debug line left from previous commit.
  ........
................
  r202410 | dvossel | 2009-06-22 11:33:35 -0400 (Mon, 22 Jun 2009) | 5 lines
  
  attempting to load running modules
  
  Modules placed in the priority heap for loading were not properly removed from the linked list.  This resulted in some modules attempting to load twice.
................
  r202415 | russell | 2009-06-22 12:05:08 -0400 (Mon, 22 Jun 2009) | 9 lines
  
  Merged revisions 202414 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202414 | russell | 2009-06-22 11:00:00 -0500 (Mon, 22 Jun 2009) | 2 lines
    
    Make Polycom subscription type override check more explicit.
  ........
................
  r202417 | seanbright | 2009-06-22 12:09:50 -0400 (Mon, 22 Jun 2009) | 4 lines
  
  Fix lock usage in cdr_sqlite3_custom to avoid potential crashes during reload.
  
  Pointed out by Russell while working on the CEL branch.
................
  r202497 | russell | 2009-06-22 16:11:04 -0400 (Mon, 22 Jun 2009) | 11 lines
  
  Merged revisions 202496 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202496 | russell | 2009-06-22 15:08:53 -0500 (Mon, 22 Jun 2009) | 4 lines
    
    Report CallerID change during a masquerade.
    
    Reported by: markster
  ........
................
  r202570 | russell | 2009-06-23 10:54:21 -0400 (Tue, 23 Jun 2009) | 7 lines
  
  Ignore voicemail messages that are just silence.
  
  (closes issue #2264)
  Reported by: pfn
  Patches:
        silent-vm-1.6.2.txt uploaded by pfn (license 810)
................
  r202574 | mmichelson | 2009-06-23 11:11:47 -0400 (Tue, 23 Jun 2009) | 8 lines
  
  Blocked revisions 202572 via svnmerge
  
  ........
    r202572 | mmichelson | 2009-06-23 10:08:27 -0500 (Tue, 23 Jun 2009) | 3 lines
    
    Fix potential memory leak in chan_sip when video rtp is not allocated properly.
  ........
................
  r202603 | mmichelson | 2009-06-23 11:23:00 -0400 (Tue, 23 Jun 2009) | 8 lines
  
  Blocked revisions 202601 via svnmerge
  
  ........
    r202601 | mmichelson | 2009-06-23 10:22:35 -0500 (Tue, 23 Jun 2009) | 3 lines
    
    Fix more memory leaks that may result if rtp is not successfully allocated.
  ........
................
  r202672 | dvossel | 2009-06-23 12:31:30 -0400 (Tue, 23 Jun 2009) | 18 lines
  
  Merged revisions 202671 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202671 | dvossel | 2009-06-23 11:28:46 -0500 (Tue, 23 Jun 2009) | 12 lines
    
    MWI NOTIFY contains a wrong URI if Asterisk listens to non-standard port and transport
    
    (closes issue #14659)
    Reported by: klaus3000
    Patches:
          patch_chan_sip_fixMWIuri_1.4.txt uploaded by klaus3000 (license 65)
          mwi_port-transport_trunk.diff uploaded by dvossel (license 671)
    Tested by: dvossel, klaus3000
    
    Review: https://reviewboard.asterisk.org/r/288/
  ........
................
  r202753 | rbrindley | 2009-06-23 17:25:17 -0400 (Tue, 23 Jun 2009) | 9 lines
  
  If we delete the info, lets also delete the lines
  
  (closes issue #14509)
  Reported by: timeshell
  Patches:
        20090504__bug14509.diff.txt uploaded by tilghman (license 14)
  Tested by: awk, timeshell
................
  r202755 | rmudgett | 2009-06-23 17:38:21 -0400 (Tue, 23 Jun 2009) | 14 lines
  
  Make outgoing_colp=2 misdn.conf port parameter not send redirecting or transfer messages.
  
  If the outgoing_colp parameter is set to not send COLP information, then
  it does not make sense to send redirecting or transfer messages announcing
  new COLP information that is blocked.  The service provider may supply the
  listed number for that line when it passes the messages to the next hop.
  Why tell the switch that these events happened when the information is
  otherwise suppressed?
  
  Also blocked the number of previous redirects that may have occurred to
  calls going out the port when outgoing_colp is 2.
  
  Follow on to JIRA ABE-1853.
................
  r202761 | mattf | 2009-06-23 18:08:43 -0400 (Tue, 23 Jun 2009) | 1 line
  
  I could have sworn I committed this patch ages ago, but... bug fix with setting NAI properly on linksets in certain situations.
................
  r202804 | russell | 2009-06-23 18:47:26 -0400 (Tue, 23 Jun 2009) | 2 lines
  
  Clean up section hierarchy for the CDR chapter.
................
  r202840 | seanbright | 2009-06-23 19:53:45 -0400 (Tue, 23 Jun 2009) | 1 line
  
  Remove some trailing whitespace before making content changes.
................
  r202841 | seanbright | 2009-06-23 19:57:07 -0400 (Tue, 23 Jun 2009) | 1 line
  
  Change some section names in the CDR tex documentation.
................
  r202887 | seanbright | 2009-06-24 09:47:55 -0400 (Wed, 24 Jun 2009) | 8 lines
  
  Update sample cdr_tds configuration to try and eliminate some confusion.
  
  Also change the preferred configuration option from 'hostname' (which was
  misleading because it didn't actually treat the value as a hostname) to
  'connection' and added some verbage explaining that the user would need to
  refer to their freetds.conf file for those settings.  'hostname' was kept
  as a backwards compatible configuration parameter.
................
  r202889 | seanbright | 2009-06-24 09:53:49 -0400 (Wed, 24 Jun 2009) | 2 lines
  
  Ignore some files generated when asterisk.pdf is created.
................
  r202925 | file | 2009-06-24 14:08:17 -0400 (Wed, 24 Jun 2009) | 2 lines
  
  Ensure the default settings are applied for T.38 when we set it up for a peer.
................
  r202967 | mmichelson | 2009-06-24 14:29:10 -0400 (Wed, 24 Jun 2009) | 9 lines
  
  Merged revisions 202966 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r202966 | mmichelson | 2009-06-24 13:28:47 -0500 (Wed, 24 Jun 2009) | 3 lines
    
    Use the handy UNLINK macro instead of hand-coding the same thing in-line.
  ........
................
  r203037 | rmudgett | 2009-06-24 17:08:55 -0400 (Wed, 24 Jun 2009) | 15 lines
  
  Merged revisions 203036 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203036 | rmudgett | 2009-06-24 16:01:43 -0500 (Wed, 24 Jun 2009) | 8 lines
    
    Improved chan_dahdi.conf pritimer error checking.
    
    Valid format is: pritimer=timer_name,timer_value
    
    *  Fixed segfault if the ',' is missing.
    *  Completely check the range returned by pri_timer2idx() to prevent
    possible access outside array bounds.
  ........
................

Modified:
    team/junky/cli-tls/   (props changed)

Propchange: team/junky/cli-tls/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Wed Jun 24 23:58:52 2009
@@ -1,1 +1,1 @@
-/trunk:1-203058
+




More information about the svn-commits mailing list