]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
14 years agoMerged revisions 315893 via svnmerge from
Matthew Nicholson [Wed, 27 Apr 2011 19:14:27 +0000 (19:14 +0000)] 
Merged revisions 315893 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315893 | mnicholson | 2011-04-27 14:03:05 -0500 (Wed, 27 Apr 2011) | 21 lines

  Merged revisions 315891 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315891 | mnicholson | 2011-04-27 13:57:56 -0500 (Wed, 27 Apr 2011) | 14 lines

    Fix our compliance with RFC 3261 section 18.2.2.

    This change optimizes the free_via() function and removes some redundant null
    checking. It also fixes compliance with RFC 3261 section 18.2.2 by always using
    the port specified in the Via header for routing responses (even when maddr is
    not set). Also the htons() function is now used when setting the port.
    Additional documentation comments have been added in various places to make the
    logic in the code clearer.

    (closes issue #18951)
    Reported by: jmls
    Patches:
          issue18951_set_proper_port_from_via.patch uploaded by wdoekes (license 717) (modified)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315894 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSet the copyright year to 2011 in the startup message.
Russell Bryant [Wed, 27 Apr 2011 15:55:48 +0000 (15:55 +0000)] 
Set the copyright year to 2011 in the startup message.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315810 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoEnable Russian core sound selection in menuselect.
Leif Madsen [Wed, 27 Apr 2011 12:36:17 +0000 (12:36 +0000)] 
Enable Russian core sound selection in menuselect.

(closes issue #18724)
Reported by: pbxware

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315765 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315672 via svnmerge from
Terry Wilson [Tue, 26 Apr 2011 22:56:19 +0000 (22:56 +0000)] 
Merged revisions 315672 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315672 | twilson | 2011-04-26 15:52:25 -0700 (Tue, 26 Apr 2011) | 18 lines

  Merged revisions 315671 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315671 | twilson | 2011-04-26 15:47:56 -0700 (Tue, 26 Apr 2011) | 11 lines

    Make sure unregistering a peer unlinks it from the peer container

    Instead of mostly copying the code from expire_register, just use the function
    that "does the right thing".

    (closes issue #16033)
    Reported by: kkm
    Patches:
          016033-tilgman-fixed-refcount.diff uploaded by kkm (license 888)
    Tested by: kkm, tilghman, twilson
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315673 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThe 'e' special extension fails to trigger in at least two cases.
Richard Mudgett [Tue, 26 Apr 2011 22:14:31 +0000 (22:14 +0000)] 
The 'e' special extension fails to trigger in at least two cases.

The 'e' extension is a fall back for the 'i', 't', or 'T' extensions if
any of them do not exist.  Many of the places the 'e' extension was
supposed to be invoked fail because the priority was set wrong.  There
were two places where the 'e' extension was not even checked for fall
back.

* Made invoke the 'e' extension similarly to the previous 'i', 't', or 'T'
extension check and added the 'e' extension as a fall back to the two
missing locations.

* Prioritized and optimized some hangup tests associated with the 'e'
extension.

(closes issue #19136)
Reported by: kshumard
Tested by: rmudgett

Review: https://reviewboard.asterisk.org/r/1196/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315645 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315643 via svnmerge from
Terry Wilson [Tue, 26 Apr 2011 21:39:01 +0000 (21:39 +0000)] 
Merged revisions 315643 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315643 | twilson | 2011-04-26 14:27:44 -0700 (Tue, 26 Apr 2011) | 25 lines

  Merged revisions 315596 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315596 | twilson | 2011-04-26 14:16:10 -0700 (Tue, 26 Apr 2011) | 18 lines

    Allow transfer loops without allowing forwarding loops

    We try to avoid the situation where two phones may be forwarded to each other
    causing an infinite loop by storing each dialed interface in a channel
    datastore and checking the list before dialing out. This works, but currently
    breaks situations like A calls B, A transfers B to C, B transfers C to A, and A
    transfers C to B. Since human interaction is happening here and not an
    automated forwarding loop, it should be allowed.

    This patch removes the dialed_interfaces datastore when a call is bridged (a
    suggestion from the brilliant mmichelson). If a call is being bridged, it
    should be safe to assume that we aren't stuck in a loop.

    Since we are now handling this is the bridge code, the previous attempts at
    handling it in app_dial and app_queue are removed.

    Review: https://reviewboard.asterisk.org/r/1195/
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315644 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315502 via svnmerge from
Tilghman Lesher [Tue, 26 Apr 2011 19:32:50 +0000 (19:32 +0000)] 
Merged revisions 315502 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315502 | tilghman | 2011-04-26 14:22:52 -0500 (Tue, 26 Apr 2011) | 21 lines

  Merged revisions 315501 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315501 | tilghman | 2011-04-26 14:18:46 -0500 (Tue, 26 Apr 2011) | 14 lines

    Fix the bounds-checking code.

    The code that set the bit within the select bitfield was correct, but the
    bounds-checking code was not.  The change to that line uses the new _bitsize
    macro for clarity.  Also, FD_ZERO macro did not zero-out anything but the
    first word of the bitfield, so this could have caused problems with modules
    using that macro with the expanded bitfield.

    (closes issue #18773)
     Reported by: jamicque
     Patches:
           20110423__issue18773.diff.txt uploaded by tilghman (license 14)
     Tested by: chris-mac
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315503 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd missing set of name valid flag when dialing.
Richard Mudgett [Tue, 26 Apr 2011 18:00:34 +0000 (18:00 +0000)] 
Add missing set of name valid flag when dialing.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315452 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agochan_local: resolve a deadlock.
Russell Bryant [Tue, 26 Apr 2011 17:40:23 +0000 (17:40 +0000)] 
chan_local: resolve a deadlock.

This patch resolves a fairly complex deadlock that can occur with the
combination of chan_local and a dialplan switch, such as dynamic realtime
extensions, which pulls autoservice into the picture when doing a dialplan
lookup.

(closes issue #18818)
Reported by: nic
Patches:
      issue18818.patch uploaded by jthurman (license 614)
      18818.v1.txt uploaded by russell (license 2)
Tested by: nic, jthurman, kterzi, steve-howes, sysreq, IshMalik

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315446 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315393 via svnmerge from
Paul Belanger [Tue, 26 Apr 2011 02:18:50 +0000 (02:18 +0000)] 
Merged revisions 315393 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r315393 | pabelanger | 2011-04-25 22:17:43 -0400 (Mon, 25 Apr 2011) | 7 lines

  Add back CLI command 'dialplan save'

  (closes issue #19140)
  Reported by: lmadsen
  Patches:
        __20110419_dialplan_save.patch.txt uploaded by lmadsen (license 10)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315394 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoWhen using MGCP realtime gateway definitions, random crashes occur.
Richard Mudgett [Mon, 25 Apr 2011 21:49:00 +0000 (21:49 +0000)] 
When using MGCP realtime gateway definitions, random crashes occur.

Fixed incorrect linked list node removal for realtime gateways.

(closes issue #18291)
Reported by: nahuelgreco
Patches:
      dangling-pointers-when-pruning.patch uploaded by nahuelgreco (license 162)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315349 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315258 via svnmerge from
Russell Bryant [Mon, 25 Apr 2011 19:37:32 +0000 (19:37 +0000)] 
Merged revisions 315258 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315258 | russell | 2011-04-25 14:31:44 -0500 (Mon, 25 Apr 2011) | 17 lines

  Merged revisions 315257 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315257 | russell | 2011-04-25 14:28:41 -0500 (Mon, 25 Apr 2011) | 10 lines

    Be more flexible with unknown chunks in wav files.

    This patch makes format_wav ignore unknown chunks instead of erroring
    out on them.

    (closes issue #18306)
    Reported by: jhirsch
    Patches:
          wav_skip_unknown_blocks.diff uploaded by jhirsch (license 1156)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315259 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315212 via svnmerge from
Russell Bryant [Mon, 25 Apr 2011 19:04:28 +0000 (19:04 +0000)] 
Merged revisions 315212 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r315212 | russell | 2011-04-25 14:00:24 -0500 (Mon, 25 Apr 2011) | 7 lines

  Don't link non-cached realtime peers into the peers_by_ip container.

  (closes issue #18924)
  Reported by: wdoekes
  Patches:
        issue18924_uncached_realtime_peers_leak-1.6.2.17.patch uploaded by wdoekes (license 717)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315213 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 315052 via svnmerge from
Alec L Davis [Mon, 25 Apr 2011 07:14:32 +0000 (07:14 +0000)] 
Merged revisions 315052 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r315052 | alecdavis | 2011-04-25 19:11:12 +1200 (Mon, 25 Apr 2011) | 16 lines

  Merged revisions 315051 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r315051 | alecdavis | 2011-04-25 19:06:29 +1200 (Mon, 25 Apr 2011) | 11 lines

    chan_local:check_bridge() misplaced misplaced ast_mutex_unlock

    if !p->chan->_bridge->_softhangup path isn't followed, brigde remains locked.

    (closes issue #19176)
    Reported by: alecdavis
    Patches:
          bug19176.diff.txt uploaded by alecdavis (license 585)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315053 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agochan_dahdi: Can't return to normal ring after distinctive ring on FXS
Alec L Davis [Fri, 22 Apr 2011 22:59:18 +0000 (22:59 +0000)] 
chan_dahdi: Can't return to normal ring after distinctive ring on FXS

clear a previous distinctivering pattern before each new call

(closes issue #18985)
Reported by: bromont
Patches:
      bug18985.diff.txt uploaded by alecdavis (license 585)
Tested by: alecdavis, bromont

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315001 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314958 via svnmerge from
Matthew Nicholson [Fri, 22 Apr 2011 21:20:08 +0000 (21:20 +0000)] 
Merged revisions 314958 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r314958 | mnicholson | 2011-04-22 15:49:45 -0500 (Fri, 22 Apr 2011) | 17 lines

  Merged revisions 311203,314908 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r311203 | mnicholson | 2011-03-17 14:14:37 -0500 (Thu, 17 Mar 2011) | 4 lines

    Don't hold the pvt lock while streaming a file.

    ABE-2756
  ........
    r314908 | mnicholson | 2011-04-22 15:01:48 -0500 (Fri, 22 Apr 2011) | 4 lines

    Prevent the login thread and the app threads from using the asterisk channel at the same time.

    ABE-2756
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314959 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314778 via svnmerge from
Russell Bryant [Fri, 22 Apr 2011 14:02:23 +0000 (14:02 +0000)] 
Merged revisions 314778 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r314778 | russell | 2011-04-22 08:58:03 -0500 (Fri, 22 Apr 2011) | 11 lines

  Initialize buffers in getvar and getvarfull.

  Initialize the buffers used to hold the result from GET VARIABLE or
  GET VARIABLE FULL.  The bug report shows func_read returning garbage in
  the result.  It assumed that the buffer passed in was initialized, like many
  other functions do.  In the more common code path (through the dialplan), it
  is initialized, so just initialize it here too.

  (closes issue #19050)
  Reported by: johnz
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314780 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix a few typos (shown by Lintian)
Tzafrir Cohen [Fri, 22 Apr 2011 13:59:43 +0000 (13:59 +0000)] 
Fix a few typos (shown by Lintian)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314779 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRecorded merge of revisions 314776 via svnmerge from
Russell Bryant [Fri, 22 Apr 2011 13:35:59 +0000 (13:35 +0000)] 
Recorded merge of revisions 314776 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r314776 | russell | 2011-04-22 08:35:22 -0500 (Fri, 22 Apr 2011) | 10 lines

  Fix handling of some call parking config options.

  This patch adjusts the handling of some call parking config options to fix some
  issues that have already been addressed in 1.8 and trunk.

  (closes issue #19167)
  Reported by: bluecrow76
  Patches:
        asterisk-1.6.2.17.2-fix-build-parkinglot-parked-AST_FEATURE_FLAGS.diff uploaded by bluecrow76 (license 270)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314777 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCorrect DAHDIShowChannels XML documentation.
Richard Mudgett [Thu, 21 Apr 2011 22:38:44 +0000 (22:38 +0000)] 
Correct DAHDIShowChannels XML documentation.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314732 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314620 via svnmerge from
Matthew Nicholson [Thu, 21 Apr 2011 18:24:05 +0000 (18:24 +0000)] 
Merged revisions 314620 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r314620 | mnicholson | 2011-04-21 13:22:19 -0500 (Thu, 21 Apr 2011) | 20 lines

  Merged revisions 314607 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r314607 | mnicholson | 2011-04-21 13:19:21 -0500 (Thu, 21 Apr 2011) | 14 lines

    Added limits to the number of unauthenticated sessions TCP based protocols are allowed to have open simultaneously.  Also added timeouts for unauthenticated sessions where it made sense to do so.

    Unrelated, the manager interface now properly checks if the user has the "system" privilege before executing shell commands via the Originate action.

    AST-2011-005
    AST-2011-006

    (closes issue #18787)
    Reported by: kobaz

    (related to issue #18996)
    Reported by: tzafrir
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314628 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314549 via svnmerge from
Terry Wilson [Thu, 21 Apr 2011 00:23:04 +0000 (00:23 +0000)] 
Merged revisions 314549 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r314549 | twilson | 2011-04-20 17:17:34 -0700 (Wed, 20 Apr 2011) | 6 lines

  Don't allocate more space than necessary for a sip_pkt

  This extra allocation is a hold-over from when pkt->data was a
  character array. Now that it is an allocated string, just allocate
  enough for the sip_pkt.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314550 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAST_CONTROL_XXX comment changes.
Richard Mudgett [Wed, 20 Apr 2011 16:54:02 +0000 (16:54 +0000)] 
AST_CONTROL_XXX comment changes.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314417 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoInitialize track pointer
Terry Wilson [Wed, 20 Apr 2011 05:25:15 +0000 (05:25 +0000)] 
Initialize track pointer

ast_reentrancy_init checks to see if it is NULL before initializing with calloc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314358 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUse SSLv23_client_method instead of old SSLv2 only.
Leif Madsen [Tue, 19 Apr 2011 15:42:10 +0000 (15:42 +0000)] 
Use SSLv23_client_method instead of old SSLv2 only.

(closes issue #19095)
(closes issue #19138)
Reported by: tzafrir
Patches:
      no_ssl2.diff uploaded by tzafrir (license 46)
Tested by: russell, chazzam

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314251 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314205 via svnmerge from
Leif Madsen [Tue, 19 Apr 2011 14:28:15 +0000 (14:28 +0000)] 
Merged revisions 314205 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r314205 | lmadsen | 2011-04-19 09:27:50 -0500 (Tue, 19 Apr 2011) | 6 lines

  Remove duplicate documentation from func_channel.c

  (closes issue #18970)
  Reported by: IgorG
  Patches:
        func_channel.c.doc.diff uploaded by IgorG (license 20)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314206 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 314202 via svnmerge from
Leif Madsen [Tue, 19 Apr 2011 14:24:25 +0000 (14:24 +0000)] 
Merged revisions 314202 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r314202 | lmadsen | 2011-04-19 09:23:39 -0500 (Tue, 19 Apr 2011) | 7 lines

  Update seconds to milliseconds in ast_verb output.

  (closes issue #19084)
  Reported by: smurfix
  Patches:
        app_dial.patch uploaded by smurfix (license 547)
  Tested by: lmadsen, smurfix
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314203 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThe AsyncAGI command loop is lax in the value it returns for the return status.
Richard Mudgett [Mon, 18 Apr 2011 16:10:10 +0000 (16:10 +0000)] 
The AsyncAGI command loop is lax in the value it returns for the return status.

* Return correct status: SUCCESS/FAILED/HANGUP.  Previously, abnormal
exits from the command loop such as hangup would return SUCCESS.

* The "asyncagi break" command now returns SUCCESS and is now the only way
to break the command loop with that status.  Previously, it returned
FAILED.

* The AMI event AsyncAGI End is no longer sent if the AsyncAGI Start event
is not sent.  Previously, this happened because of an error setting up the
AGI pipes.

* All executed AGI commands now get an AsyncAGI Exec result event.
Previously, if the command returned failure (because of hangup), the
command loop just exited with FAILURE and did not send the AsyncAGI Exec
result event.

* Makes sure that the channel frame queue is empty on hangup.

Review: https://reviewboard.asterisk.org/r/1183/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314069 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUnclear code in app_dial.c.
Richard Mudgett [Mon, 18 Apr 2011 16:02:12 +0000 (16:02 +0000)] 
Unclear code in app_dial.c.

Make code formatting clear.

(closes issue #19134)
Reported by: oej

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314068 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove the need for deadlock avoidance in chan_sip do_monitor.
David Vossel [Mon, 18 Apr 2011 15:23:45 +0000 (15:23 +0000)] 
Remove the need for deadlock avoidance in chan_sip do_monitor.

Deadlock avoidance between the sip pvt and the pvt->owner is
very difficult.  Now that channel's are ao2 objects, this complication
is no longer necessary.  It turns out the pvt's msg queue only
exists because of deadlock avoidance (when deadlock avoidance fails
msgs were added to a queue to be processed later), so this goes away as well.

The technique used in the new sip_lock_pvt_full() function should
be used as a template for replacing all locations where deadlock
avoidance occurs between a channel tech_pvt and the pvt's owner.
My hope is that this will begin a reversal of the invalid channel
driver locking architecture we have been using for so long.

This patch also resolves an issue where the pvt->owner gets
unlocked during processing the msg queue.

(closes issue #18690)
Reported by: dvossel

Review: https://reviewboard.asterisk.org/r/1182/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314067 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agosip codec negotiation of dynamic rtp payloads error fix
David Vossel [Mon, 18 Apr 2011 13:41:06 +0000 (13:41 +0000)] 
sip codec negotiation of dynamic rtp payloads error fix

This patch fixes how chan_sip handles dynamic rtp payload types
it does not understand.  At the moment if a dynamic payload's mime
type does not match one we understand, the payload does not get
removed from our payload table.  As a result of this, the payload
is set to whatever dynamic codec we use internally for that payload
number on outgoing INVITES.  This is incorrect.

This patch fixes this by properly checking the rtpmap set function's
return code to make sure it was found.  The function can return both
-1 and -2 depending on the source of the mismatch.  We were just
checking -1 explicitly.

Review: https://reviewboard.asterisk.org/r/1169/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314017 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313859 via svnmerge from
Jonathan Rose [Fri, 15 Apr 2011 15:08:05 +0000 (15:08 +0000)] 
Merged revisions 313859 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r313859 | jrose | 2011-04-15 09:58:37 -0500 (Fri, 15 Apr 2011) | 10 lines

  Fix a Tab Completion bug that occurs due to multiple matches on a substring.

  Makes word_match function in cli.c repeat a search for a command string until
  a proper match is found or the string is searched to the last point.

  (closes issue #17494)
  Reported by: ffossard

  Review: https://reviewboard.asterisk.org/r/1180/
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313860 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoLeftover debug messages unconditionally sent to the console.
Richard Mudgett [Thu, 14 Apr 2011 20:59:56 +0000 (20:59 +0000)] 
Leftover debug messages unconditionally sent to the console.

Executing Dial(DAHDI/1/18475551212,300,) with the echotraining config
option enabled outputs the following debug messages unconditionally:

Dialing T1847555121 on 1
Dialing www2w on 1

* Made debug messages in my_dial_digits() normal debug messages that do
not get output unless enabled.

* Reworded some debug messages in my_dial_digits() to be clearer.

* Replace strncpy() with ast_copy_string() in my_dial_digits() which does
the same job better.

(closes issue #18847)
Reported by: vmikhelson
Tested by: rmudgett

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313780 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRevert flushing stale AsyncAGI commands from -r313615.
Richard Mudgett [Wed, 13 Apr 2011 22:52:47 +0000 (22:52 +0000)] 
Revert flushing stale AsyncAGI commands from -r313615.

It looks like it was intentional to leave any commands or in-flight
commands in the queue in case Async AGI is run again on the call.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313700 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMiscellaneous AGI diagnostic message cleanup and code optimization.
Richard Mudgett [Wed, 13 Apr 2011 17:47:43 +0000 (17:47 +0000)] 
Miscellaneous AGI diagnostic message cleanup and code optimization.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313658 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years ago* Add missing channel lock to handle_cli_agi_add_cmd().
Richard Mudgett [Wed, 13 Apr 2011 17:18:49 +0000 (17:18 +0000)] 
* Add missing channel lock to handle_cli_agi_add_cmd().

* Flush any Async AGI commands left over from earlier Async AGI control of
the call.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313615 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313579 via svnmerge from
Richard Mudgett [Wed, 13 Apr 2011 16:31:50 +0000 (16:31 +0000)] 
Merged revisions 313579 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r313579 | rmudgett | 2011-04-13 11:29:49 -0500 (Wed, 13 Apr 2011) | 48 lines

  Merged revisions 313545 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r313545 | rmudgett | 2011-04-13 11:21:24 -0500 (Wed, 13 Apr 2011) | 41 lines

    Asterisk does not hangup a channel after endpoint hangs up.

    If the call that the dialplan started an AGI script for is hungup while
    the AGI script is in the middle of a command then the AGI script is not
    notified of the hangup.  There are many AGI Exec commands that this can
    happen with.  The reported applications have been: Background, Wait, Read,
    and Dial.  Also the AGI Get Data command.

    * Don't wait on the Asterisk channel after it has hung up.  The channel is
    likely to never need servicing again.

    * Restored the AGI script's ability to return the AGI_RESULT_HANGUP value
    in run_agi().  It previously only could return AGI_RESULT_SUCCESS or
    AGI_RESULT_FAILURE after the DeadAGI and AGI applications were merged.

    (closes issue #17954)
    Reported by: mn3250
    Patches:
          issue17954_v1.8.patch uploaded by rmudgett (license 664)
          issue17954_v1.6.2.patch uploaded by rmudgett (license 664)
          issue17954_v1.4.patch uploaded by rmudgett (license 664)
    Tested by: rmudgett
    JIRA SWP-2171

    (closes issue #18492)
    Reported by: devmod
    Tested by: rmudgett
    JIRA SWP-2761

    (closes issue #18935)
    Reported by: nvitaly
    Tested by: astmiv, rmudgett
    JIRA SWP-3216

    (closes issue #17393)
    Reported by: siby
    Tested by: rmudgett
    JIRA SWP-2727

    Review: https://reviewboard.asterisk.org/r/1165/
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313588 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBring the dumpchan application inline with "core show channel".
Richard Mudgett [Tue, 12 Apr 2011 22:35:53 +0000 (22:35 +0000)] 
Bring the dumpchan application inline with "core show channel".

* Added fields that are in "core show channel" to dumpchan output.

* Fixed reuse of formatbuf before the previous string stored there was
used by snprintf.  All output strings now have their own buffer.

* Adjusted the buffer sizes to not be so abusive of the stack now that
there are more buffers.

Change requested by oej.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313517 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agofixing stupid mistake with putting code before variable declaration
Jonathan Rose [Tue, 12 Apr 2011 18:47:05 +0000 (18:47 +0000)] 
fixing stupid mistake with putting code before variable declaration
........

  Merged revisions 313435 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2

  ........

    r313432 | jrose | 2011-04-12 13:12:29 -0500 (Tue, 12 Apr 2011) | 14 lines

reload Chan_dahdi memory leak caused by variables

chan_dahdi reloading with variables set via setvar in chan_dahdi.conf would
stay in the dahdi_pvt structs for individual channels (causing them to just
continue adding the new ones to the list) and also there was a memory leak
causes by the conf objects. This patch resolves both of these by using
ast_variables_destroy during the loading process.

(closes issue #17450)
Reported by: nahuelgreco
Patches:
patch.diff uploaded by jrose (license 1225)
Tested by: tilghman, jrose
Review: https://reviewboard.asterisk.org/r/1170/

  ........

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313436 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313432 via svnmerge from
Jonathan Rose [Tue, 12 Apr 2011 18:25:48 +0000 (18:25 +0000)] 
Merged revisions 313432 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........

  r313432 | jrose | 2011-04-12 13:12:29 -0500 (Tue, 12 Apr 2011) | 14 lines

  reload Chan_dahdi memory leak caused by variables

  chan_dahdi reloading with variables set via setvar in chan_dahdi.conf would
  stay in the dahdi_pvt structs for individual channels (causing them to just
  continue adding the new ones to the list) and also there was a memory leak
  causes by the conf objects. This patch resolves both of these by using
  ast_variables_destroy during the loading process.

  (closes issue #17450)
  Reported by: nahuelgreco
  Patches:
  patch.diff uploaded by jrose (license 1225)
  Tested by: tilghman, jrose

  Review: https://reviewboard.asterisk.org/r/1170/

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313434 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFrames from the inbound channel should go to all outbound channels in app_dial.c.
Richard Mudgett [Mon, 11 Apr 2011 23:08:02 +0000 (23:08 +0000)] 
Frames from the inbound channel should go to all outbound channels in app_dial.c.

In app_dial.c:wait_for_answer() frames from the inbound channel should be
sent to all outbound channels instead of only if there is just one
outbound channel.

Control frames like AST_CONTROL_CONNECTED_LINE need to be passed to all of
the the outbound channels.  This can happen if a blond transfer is done by
a remote switch on the inbound channel.

JIRA AST-443
JIRA SWP-2730

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313369 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBackport a restructuring change from trunk to make the next change stand out.
Richard Mudgett [Mon, 11 Apr 2011 23:03:02 +0000 (23:03 +0000)] 
Backport a restructuring change from trunk to make the next change stand out.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313368 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdded "Connected Line ID" and "Connected Line ID Name" to "core show channel" output.
Richard Mudgett [Mon, 11 Apr 2011 22:27:25 +0000 (22:27 +0000)] 
Added "Connected Line ID" and "Connected Line ID Name" to "core show channel" output.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313366 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313278 via svnmerge from
Leif Madsen [Mon, 11 Apr 2011 19:36:40 +0000 (19:36 +0000)] 
Merged revisions 313278 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r313278 | lmadsen | 2011-04-11 14:33:03 -0500 (Mon, 11 Apr 2011) | 14 lines

  Merged revisions 313277 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r313277 | lmadsen | 2011-04-11 14:30:20 -0500 (Mon, 11 Apr 2011) | 6 lines

    Fix detection of OpenSSL 1.0

    (closes issue #19093)
    Reported by: tzafrir
    Patches:
          detect_openssl_10.diff uploaded by tzafrir (license 46)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313279 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313189 via svnmerge from
Richard Mudgett [Mon, 11 Apr 2011 15:40:30 +0000 (15:40 +0000)] 
Merged revisions 313189 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r313189 | rmudgett | 2011-04-11 10:32:53 -0500 (Mon, 11 Apr 2011) | 32 lines

  Merged revisions 313188 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r313188 | rmudgett | 2011-04-11 10:27:52 -0500 (Mon, 11 Apr 2011) | 25 lines

    Stuck channel using FEATD_MF if caller hangs up at the right time.

    The cause was actually a caller hanging up just at the end of the Feature
    Group D DTMF tones that setup the call.  The reason for this is a "guard
    timer" that's implemented using ast_safe_sleep(100).  If the caller
    happens to hang up AFTER the final tone of the DTMF string but BEFORE the
    end of that ast_safe_sleep(), then ast_safe_sleep() will return non-zero.
    This causes the code to bounce to the end of ss_thread(), but it does NOT
    tear down the call properly.

    This should be a rare occurrence because the caller has to hang up at
    EXACTLY the right time.  Nonetheless, it was happening quite regularly on
    the reporter's system.  It's not easily reproducible, unless you purposely
    increase the guard-time to 2000 or more.  Once you do that, you can
    reproduce it every time by watching the DTMF debug and hanging up just as
    it ends.

    Simply add an ast_hangup() before goto quit.

    (closes issue #15671)
    Reported by: jcromes
    Patches:
          issue15671.patch uploaded by pabelanger (license 224)
    Tested by: jcromes
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313190 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agofix trivial bug in ooh323_indicate on AST_CONTROL_SRC...
Alexandr Anikin [Sat, 9 Apr 2011 20:56:17 +0000 (20:56 +0000)] 
fix trivial bug in ooh323_indicate on AST_CONTROL_SRC...
check p->rtp is not null

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313142 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 313047 via svnmerge from
Jonathan Rose [Thu, 7 Apr 2011 13:35:33 +0000 (13:35 +0000)] 
Merged revisions 313047 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r313047 | jrose | 2011-04-07 08:23:01 -0500 (Thu, 07 Apr 2011) | 9 lines

  Makes parking lots clear and rebuild properly when features reload is invoked from CLI

  Before, default parkinglot in context parkedcalls with ext 700 would always be present and when reload was invoked, the previous parkinglots would not be cleared.

  (closes issue #18801)
  Reported by: mickecarlsson

  Review: https://reviewboard.asterisk.org/r/1161/
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313048 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoapp_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE
Alec L Davis [Thu, 7 Apr 2011 10:24:51 +0000 (10:24 +0000)] 
app_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313002 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix ISDN calling subaddr User Specified Odd/Even Flag
Alec L Davis [Thu, 7 Apr 2011 10:19:31 +0000 (10:19 +0000)] 
Fix ISDN calling subaddr User Specified Odd/Even Flag

Calculation of the Odd/Even flag was wrong.
Implement correct algo, and set odd/even=0 if data would be truncated.
Only allow automatic calculation of the O/E flag, don't let dialplan influence.

(closes issue #19062)
Reported by: festr
Patches:
      bug19062.diff2.txt uploaded by alecdavis (license 585)
Tested by: festr, alecdavis, rmudgett

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@313001 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCrash if ISDN span layer 1 is down on initial load.
Richard Mudgett [Tue, 5 Apr 2011 18:45:24 +0000 (18:45 +0000)] 
Crash if ISDN span layer 1 is down on initial load.

Regression from -r312575 B channel shifting during negotiation.

* Also combine updating the alarm flag with clearing the resetting flag.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312949 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd 416 response to OPTIONS packet.
Richard Mudgett [Tue, 5 Apr 2011 16:19:35 +0000 (16:19 +0000)] 
Add 416 response to OPTIONS packet.

RFC3261 Section 11.2 says the response code to an OPTIONS packet needs to
be the same as if it were an INVITE.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312889 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoResponding to OPTIONS packet with 404 because Asterisk not looking for "s" extension.
Richard Mudgett [Tue, 5 Apr 2011 15:38:14 +0000 (15:38 +0000)] 
Responding to OPTIONS packet with 404 because Asterisk not looking for "s" extension.

The get_destination() function was not using the "s" extension when the
request URI did not specify an extension.  This is a regression caused
when the URI parsing code was extracted into parse_uri().

Made get_destination() substitute the "s" extension when the parsed URI
results in an empty string.

(closes issue #18348)
Reported by: shmaize
Patches:
      issue18348_v1.8.patch uploaded by rmudgett (license 664)
Tested by: shmaize

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312866 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312764 via svnmerge from
Matthew Nicholson [Tue, 5 Apr 2011 14:14:50 +0000 (14:14 +0000)] 
Merged revisions 312764 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r312764 | mnicholson | 2011-04-05 09:13:07 -0500 (Tue, 05 Apr 2011) | 15 lines

  Merged revisions 312761 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r312761 | mnicholson | 2011-04-05 09:10:34 -0500 (Tue, 05 Apr 2011) | 8 lines

    Limit the number of unauthenticated manager sessions and also limit the time they have to authenticate.

    AST-2011-005

    (closes issue #18996)
    Reported by: tzafrir
    Tested by: mnicholson
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312766 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312762 via svnmerge from
Jonathan Rose [Tue, 5 Apr 2011 14:13:15 +0000 (14:13 +0000)] 
Merged revisions 312762 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r312762 | jrose | 2011-04-05 09:11:36 -0500 (Tue, 05 Apr 2011) | 1 line

  Backporting trunk change to add verbosity to 'L' option in meetme
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312765 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312574 via svnmerge from
Richard Mudgett [Mon, 4 Apr 2011 16:10:50 +0000 (16:10 +0000)] 
Merged revisions 312574 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r312574 | rmudgett | 2011-04-04 11:00:02 -0500 (Mon, 04 Apr 2011) | 45 lines

  Merged revisions 312573 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r312573 | rmudgett | 2011-04-04 10:49:30 -0500 (Mon, 04 Apr 2011) | 38 lines

    Issues with ISDN calls changing B channels during call negotiations.

    The handling of the PROCEEDING message was not using the correct call
    structure if the B channel was changed.  (The same for PROGRESS.) The call
    was also not hungup if the new B channel is not provisioned or is busy.

    * Made all call connection messages (SETUP_ACKNOWLEDGE, PROCEEDING,
    PROGRESS, ALERTING, CONNECT, CONNECT_ACKNOWLEDGE) ensure that they are
    using the correct structure and B channel.  If there is any problem with
    the operations then the call is now hungup with an appropriate cause code.

    * Made miscellaneous messages (INFORMATION, FACILITY, NOTIFY) find the
    correct structure by looking for the call and not using the channel ID.
    NOTIFY is an exception with versions of libpri before v1.4.11 because a
    call pointer is not available for Asterisk to use.

    * Made all hangup messages (DISCONNECT, RELEASE, RELEASE_COMPLETE) find
    the correct structure by looking for the call and not using the channel
    ID.

    (closes issue #18313)
    Reported by: destiny6628
    Tested by: rmudgett
    JIRA SWP-2620

    (closes issue #18231)
    Reported by: destiny6628
    Tested by: rmudgett
    JIRA SWP-2924

    (closes issue #18488)
    Reported by: jpokorny
    JIRA SWP-2929

    JIRA AST-437 (The issues fixed here are most likely causing this JIRA issue.)
    JIRA DAHDI-406
    JIRA LIBPRI-33 (Stuck resetting flag likely fixed)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312575 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoWhen a call going out an NT-PTMP port gets rejected, Asterisk crashes.
Richard Mudgett [Fri, 1 Apr 2011 23:15:42 +0000 (23:15 +0000)] 
When a call going out an NT-PTMP port gets rejected, Asterisk crashes.

If a call is sent to an ISDN phone that rejects the call with
RELEASE_COMPLETE(cause: call reject(21), or busy(17)) Asterisk crashes.

I could not get my setup to crash.  However, I could see the possibility
from a race condition between queuing an AST_CONTROL_BUSY to the core and
then queueing an AST_CONTROL_HANGUP.  If the AST_CONTROL_BUSY is processed
before the AST_CONTROL_HANGUP is queued, the ast_channel could be
destroyed out from under chan_misdn.

Avoid this particular crash scenario by not queueing the
AST_CONTROL_HANGUP if the AST_CONTROL_BUSY was queued.

(closes issue #18408)
Reported by: wimpy
Patches:
      issue18408_v1.8.patch uploaded by rmudgett (license 664)
Tested by: rmudgett, wimpy

JIRA SWP-2679

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312509 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCallCompletionRequest()/CallCompletionCancel() exit non-zero if fail.
Richard Mudgett [Fri, 1 Apr 2011 21:31:39 +0000 (21:31 +0000)] 
CallCompletionRequest()/CallCompletionCancel() exit non-zero if fail.

The CallCompletionRequest()/CallCompletionCancel() dialplan applications
exit nonzero on normal failure conditions.  The nonzero exit causes the
dialplan to hangup immediately.  The dialplan author has no opportunity to
report success/failure to the user.

* Made always return zero so the dialplan can continue.

* Made set CC_REQUEST_RESULT/CC_REQUEST_REASON and
CC_CANCEL_RESULT/CC_CANCEL_REASON channel variables respectively.  Also
documented the values set.

* Reduced the warning about no core instance in CallCompletionCancel() to
a debug message.  It is a normal event and should not be output at the
WARNING level.

(closes issue #18763)
Reported by: p_lindheimer
Patches:
      ccss.patch uploaded by p lindheimer (license 558) Modified
Tested by: p_lindheimer, rmudgett

JIRA SWP-3042

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312461 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312287 via svnmerge from
Tilghman Lesher [Fri, 1 Apr 2011 10:58:45 +0000 (10:58 +0000)] 
Merged revisions 312287 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r312287 | tilghman | 2011-04-01 05:51:24 -0500 (Fri, 01 Apr 2011) | 14 lines

  Merged revisions 312285 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r312285 | tilghman | 2011-04-01 05:36:42 -0500 (Fri, 01 Apr 2011) | 7 lines

    Found some leaking file descriptors while looking at ast_FD_SETSIZE dead code.

    (issue #18969)
     Reported by: oej
     Patches:
           20110315__issue18969__14.diff.txt uploaded by tilghman (license 14)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312288 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoReload must react correctly against a possibly changed table, so dropping the conditi...
Tilghman Lesher [Fri, 1 Apr 2011 10:44:33 +0000 (10:44 +0000)] 
Reload must react correctly against a possibly changed table, so dropping the conditional reload flag.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312286 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312210 via svnmerge from
Alec L Davis [Fri, 1 Apr 2011 09:03:11 +0000 (09:03 +0000)] 
Merged revisions 312210 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r312210 | alecdavis | 2011-04-01 21:47:29 +1300 (Fri, 01 Apr 2011) | 29 lines

  Merged revisions 312174 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r312174 | alecdavis | 2011-04-01 21:29:49 +1300 (Fri, 01 Apr 2011) | 23 lines

    voicemail: get real last_message_index and count_messages, ODBC resequence

    change last_message_index to read the max msgnum stored in the database
    change count_messages to actually count the number of messages.

    last_message_index change:
      This fixed overwriting of the last message if msgnum=0 was missing.
      Previously every incoming message would overwrite msgnum=1.
    count_messages change:
      allows us to detect when requencing is required in opneA_mailbox.
    resequence enabled for ODBC storage:
      Assists with fixing up corrupt databases with gaps, but only when
      a user actively opens there mailboxes.

    (closes issue #18692,#18582,#19032)
    Reported by: elguero
    Patches:
          based on odbc_resequence_mailbox2.1.diff uploaded by elguero (license 37)
    Tested by: elguero, nivek, alecdavis

    Review: https://reviewboard.asterisk.org/r/1153/
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312211 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 312103 via svnmerge from
Alec L Davis [Fri, 1 Apr 2011 07:32:12 +0000 (07:32 +0000)] 
Merged revisions 312103 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r312103 | alecdavis | 2011-04-01 20:25:54 +1300 (Fri, 01 Apr 2011) | 22 lines

  Merged revisions 312070 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r312070 | alecdavis | 2011-04-01 19:46:56 +1300 (Fri, 01 Apr 2011) | 16 lines

    app_voicemail: close_mailbox needs to respect additional messages while mailbox is open.

    close_mailbox leave gaps in message sequence if messages are deleted and new messages
    arrive during this time, this is because the shuffle down to slot 0, only shuffles
    the number of pre-existing messages when mailbox is opened, ignoring new arrivals.

    Fix: in close_mailbox re-evaluate number of messages before the shuffle, this then includes new arrivals.

    Happens on filebased or ODBC storage.

    (issues #19032,#18582,#18692,#18998)
    Reported by: alecdavis,tootai,afosorio

    Review: https://reviewboard.asterisk.org/r/1153/
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312117 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agochan_misdn segfaults when DEBUG_THREADS is enabled.
Richard Mudgett [Thu, 31 Mar 2011 20:11:40 +0000 (20:11 +0000)] 
chan_misdn segfaults when DEBUG_THREADS is enabled.

The segfault happens because jb->mutexjb is uninitialized from the
ast_malloc().  The internals of ast_mutex_init() were assuming a nonzero
value meant mutex tracking initialization had already happened.  Recent
changes to mutex tracking code to reduce excessive memory consumption
exposed this uninitialized value.

Converted misdn_jb_init() to use ast_calloc() instead of ast_malloc().
Also eliminated redundant zero initialization code in the routine.

(closes issue #18975)
Reported by: irroot

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@312022 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoIncorrect default example; the field is actually internally named "clid", not "callerid".
Tilghman Lesher [Thu, 31 Mar 2011 06:43:18 +0000 (06:43 +0000)] 
Incorrect default example; the field is actually internally named "clid", not "callerid".

(closes issue #19040)
Reported by: wcselby
Tested by: tilghman

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311930 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUpdate some setup_dahdi_int() comments.
Richard Mudgett [Wed, 30 Mar 2011 01:56:05 +0000 (01:56 +0000)] 
Update some setup_dahdi_int() comments.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311874 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove extraneous check from integer-type fields.
Tilghman Lesher [Tue, 29 Mar 2011 07:08:39 +0000 (07:08 +0000)] 
Remove extraneous check from integer-type fields.

(closes issue #19027)
 Reported by: mlehner

Review: https://reviewboard.asterisk.org/r/1149/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311799 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCross-reference VoiceMail() and VoiceMailMain() in the xml docs.
Russell Bryant [Mon, 28 Mar 2011 22:00:01 +0000 (22:00 +0000)] 
Cross-reference VoiceMail() and VoiceMailMain() in the xml docs.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311751 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agocorrect return values in ooh323_indicate for AST_CONTROL_T38_PARAMETERS
Alexandr Anikin [Sun, 27 Mar 2011 21:47:13 +0000 (21:47 +0000)] 
correct return values in ooh323_indicate for AST_CONTROL_T38_PARAMETERS

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311687 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThis patch fixes a bug with MeetMe behavior where the 'P' option for always
Brett Bryant [Wed, 23 Mar 2011 21:54:11 +0000 (21:54 +0000)] 
This patch fixes a bug with MeetMe behavior where the 'P' option for always
prompting for a pin is ignored for the first caller.

(closes issue #18070)
Reported by: mav3rick

Review: https://reviewboard.asterisk.org/r/1132/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311615 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix a possible crash in sip/reqresp_parser.c that is caused by a possible null
Brett Bryant [Wed, 23 Mar 2011 21:45:46 +0000 (21:45 +0000)] 
Fix a possible crash in sip/reqresp_parser.c that is caused by a possible null
value.

(closes issue #18821)
Reported by: cmaj
Patches:
      patch-reqresp_parser_sip_uri_domain_cmp_c_locale-crash-1.8.3-rc2.diff.tx
      uploaded by cmaj (license 830)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311612 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoDon't use static declared buf in parse_name_andor_addr
Terry Wilson [Wed, 23 Mar 2011 02:24:53 +0000 (02:24 +0000)] 
Don't use static declared buf in parse_name_andor_addr

This function isn't used anywhere yet, but we definitely don't want
to keep the same value for buf between calls to the function.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311558 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 311496 via svnmerge from
David Vossel [Tue, 22 Mar 2011 15:25:24 +0000 (15:25 +0000)] 
Merged revisions 311496 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r311496 | dvossel | 2011-03-22 10:24:45 -0500 (Tue, 22 Mar 2011) | 2 lines

  Fixes memory leak in MeetMe AMI action
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311497 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoChanges some print statements/events to use a blank string in place of NULL if the...
Jonathan Rose [Fri, 18 Mar 2011 16:19:05 +0000 (16:19 +0000)] 
Changes some print statements/events to use a blank string in place of NULL if the string in question is NULL.

This is supposed to improve Solaris compatibility since Solaris goes berserk when trying to output NULL strings.

(closes issue #18759)
Reported by: bklang
Patches:
      null-strings.patch uploaded by bklang (license 919)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311352 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoProperly populate the LOCALSTATIONID channel variable.
Matthew Nicholson [Fri, 18 Mar 2011 16:02:50 +0000 (16:02 +0000)] 
Properly populate the LOCALSTATIONID channel variable.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311342 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRace condition when ISDN CallRerouting/CallDeflection invoked.
Richard Mudgett [Fri, 18 Mar 2011 02:59:05 +0000 (02:59 +0000)] 
Race condition when ISDN CallRerouting/CallDeflection invoked.

The queued AST_CONTROL_BUSY could sometimes be processed before the
call_forward dial string is recognized.

* Moved setting the call_forwarding dial string after sending a response
to the initiator and just queue an empty frame to wake up the media thread
instead of an AST_CONTROL_BUSY.

* Added check for empty rerouting/deflection number and respond with an
error.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311297 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revision 310986 from
Richard Mudgett [Fri, 18 Mar 2011 02:22:07 +0000 (02:22 +0000)] 
Merged revision 310986 from
https://origsvn.digium.com/svn/asterisk/be/branches/C.3-bier

..........
  r310986 | rmudgett | 2011-03-16 13:56:28 -0500 (Wed, 16 Mar 2011) | 28 lines

  Dial() o option broke when connected line feature added.

  The patch restores the o option behavior and adds the ability to specify
  the CallerID.  The Dial o and f options are complementary to each other.
  The o option stores the CallerID on the outgoing channel as the channel's
  CallerID.  The f option forces the CallerID sent by the outgoing channel.

  o(x) - The argument 'x' is optional.  If not present, then specify that
  the CallerID that was present on the *calling* channel be stored as the
  CallerID on the *called* channel.  This was the behavior of Asterisk 1.0
  and earlier.  If present, then specify the CallerID stored on the *called*
  channel.  Note that o(${CALLERID(all)}) is similar to option o without
  parameters.

  f(x) - The argument 'x' is optional and its presence changes the behavior
  of this option.  If not present, then force the outgoing CallerID on a
  call-forward or deflection to the dialplan extension for this Dial() using
  a dialplan 'hint'.  For example, some PSTNs do not allow CallerID to be
  set to anything other than the numbers assigned to you.  If present, then
  force the outgoing CallerID to 'x'.

  Patches:
jira_abe_2752_dial_fo_options.patch uploaded by rmudgett (license 664)
  Tested by: rmudgett

  JIRA ABE-2752
  JIRA SWP-3096
..........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311295 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThis fixes a nasty chanspy bug which was causing a channel leak every time a spied...
Jonathan Rose [Thu, 17 Mar 2011 19:03:34 +0000 (19:03 +0000)] 
This fixes a nasty chanspy bug which was causing a channel leak every time a spied on channel made a call.

In addition to the above, it makes certain channel destruction occurs so that applications don't get stuck waiting for datastore destruction while monitored by chanspy.

(closes issue #18742)
Reported by: jkister
Tested by: jkister, jcovert, jrose

Review: http://reviewboard.digium.internal/r/106/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311197 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 311140 via svnmerge from
Matthew Nicholson [Thu, 17 Mar 2011 15:00:33 +0000 (15:00 +0000)] 
Merged revisions 311140 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r311140 | mnicholson | 2011-03-17 09:58:52 -0500 (Thu, 17 Mar 2011) | 4 lines

  Don't write items to the manager socket twice.

  AST-2011-003

  (closes issue 0018987)
  Reported by: ks-steven
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311141 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 311049 via svnmerge from
Alec L Davis [Thu, 17 Mar 2011 10:49:41 +0000 (10:49 +0000)] 
Merged revisions 311049 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r311049 | alecdavis | 2011-03-17 23:45:47 +1300 (Thu, 17 Mar 2011) | 17 lines

  Merged revisions 311048 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r311048 | alecdavis | 2011-03-17 23:43:35 +1300 (Thu, 17 Mar 2011) | 12 lines

    Remove extra quote in indications.conf

    Picking low hanging fruit.

    (closes issue #18971)
    Reported by: IgorG
    Patches:
          based on indications.conf.sample.diff uploaded by IgorG (license 20)
    Tested by: IgorG
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311050 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310998 via svnmerge from
Terry Wilson [Wed, 16 Mar 2011 19:47:59 +0000 (19:47 +0000)] 
Merged revisions 310998 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r310998 | twilson | 2011-03-16 14:46:36 -0500 (Wed, 16 Mar 2011) | 11 lines

  Fix crash on fdopen failure

  See security advisory AST-2011-004

  (closes issue #18845)
  Reported by: cmaj
  Patches:
      patch-main-tcptls-1.8.3-rc2-open-session-crash-take2.diff.txt uploaded by cmaj (license 830)
      patch-main-tcptls-1.8.3-rc2-open-session-crash-take3.diff.txt uploaded by cmaj (license 830)
  Tested by: cmaj, twilson
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310999 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310992 via svnmerge from
Terry Wilson [Wed, 16 Mar 2011 19:26:57 +0000 (19:26 +0000)] 
Merged revisions 310992 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r310992 | twilson | 2011-03-16 14:23:03 -0500 (Wed, 16 Mar 2011) | 4 lines

  Don't keep trying to write to a closed connection

  See security advisory AST-2011-003.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310993 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310889 via svnmerge from
Terry Wilson [Wed, 16 Mar 2011 17:19:57 +0000 (17:19 +0000)] 
Merged revisions 310889 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r310889 | twilson | 2011-03-16 12:03:27 -0500 (Wed, 16 Mar 2011) | 36 lines

  Merged revisions 310888 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r310888 | twilson | 2011-03-16 11:58:42 -0500 (Wed, 16 Mar 2011) | 29 lines

    Don't delay DTMF in core bridge while listening for DTMF features

    This patch is mostly the work of Olle Johansson. I did some cleanup and
    added the silence generating code if transmit_silence is set.

    When a channel listens for DTMF in the core bridge, the outbound DTMF is not
    sent until we have received DTMF_END. For a long DTMF, this is a disaster. We
    send 4 seconds of DTMF to Asterisk, which sends no audio for those 4 seconds.
    Some products see this delay and the time skew on RTP packets that results and
    start ignoring the audio that is sent afterward.

    With this change, the DTMF_BEGIN frame is inspected and checked. If it matches
    a feature code, we wait for DTMF_END and activate the feature as before. If
    transmit_silence=yes in asterisk.conf, silence is sent if we paritally match a
    multi-digit feature. If it doesn't match a feature, the frame is forwarded
    along with the DTMF_END without delay. By doing it this way, DTMF is not delayed.

    (closes issue #15642)
    Reported by: jasonshugart
    Patches:
          issue_15652_dtmf_ast-1.4.patch.txt uploaded by twilson (license 396)
    Tested by: globalnetinc, jde

    (closes issue #16625)
    Reported by: sharvanek

    Review: https://reviewboard.asterisk.org/r/1092/
    Review: https://reviewboard.asterisk.org/r/1125/
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310902 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix branch compile.
Tilghman Lesher [Tue, 15 Mar 2011 01:48:25 +0000 (01:48 +0000)] 
Fix branch compile.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310834 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agocore show locks: display ThreadID in hexadecimal
Alec L Davis [Tue, 15 Mar 2011 01:00:55 +0000 (01:00 +0000)] 
core show locks: display ThreadID in hexadecimal

Allow easier cross referencing of thread ID's with GDB backtraces

(closes issue #18968)
Reported by: alecdavis
Patches:
      bug18968.diff.txt uploaded by alecdavis (license 585)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310781 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoIntroduce t.38 parameters control functionality not full but enough for
Alexandr Anikin [Mon, 14 Mar 2011 21:45:53 +0000 (21:45 +0000)] 
Introduce t.38 parameters control functionality not full but enough for
Send/RcvFax support

Introduce t.38 controls between asterisk core and channel/proto layers.
Not all parameters are transferred from proto layers but *Fax apps
tested and work ok.

(issue #18693)
Reported by: benngard2
Patches:
      issue-18693.patch uploaded by may213 (license 454)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310734 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUndoes 310726 for further analysis
Jonathan Rose [Mon, 14 Mar 2011 21:30:25 +0000 (21:30 +0000)] 
Undoes 310726 for further analysis

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310733 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMoves data store destruction from channel destruction to hangup in channel.c
Jonathan Rose [Mon, 14 Mar 2011 21:17:13 +0000 (21:17 +0000)] 
Moves data store destruction from channel destruction to hangup in channel.c

This moves the data store destruction and app signaling events for a call to ast_hangup so that threads which wait for data store destruction
don't become stuck forever when attached to an application/function/etc that keeps the channel open.

(closes issue #18742)
Reported by: jkister
Patches:
      patch.diff uploaded by jrose (license 1225)
Tested by: jkister, jcovert, jrose

Review: https://reviewboard.asterisk.org/r/1136/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310726 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310635 via svnmerge from
Richard Mudgett [Mon, 14 Mar 2011 16:50:59 +0000 (16:50 +0000)] 
Merged revisions 310635 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r310635 | rmudgett | 2011-03-14 11:47:54 -0500 (Mon, 14 Mar 2011) | 32 lines

  Merged revisions 310633 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r310633 | rmudgett | 2011-03-14 11:38:24 -0500 (Mon, 14 Mar 2011) | 25 lines

    "Caller*ID failed checksum" on Wildcard TDM2400P and TDM410

    The last character in the caller id message is getting a framing error.

    The checksum is the last character in the message.  A framing error in the
    checksum could be because:
    1) The sender did not send a full stop bit.
    2) The sender cut off the FSK carrier too soon.
    3) The sender opted to send zero of the specified zero to 10 trailing mark
    bits and round-off errors in the code resulted in the code not being where
    it thought it was in the demodulated bit stream.

    Bit 8 of 'b' is set when parity error.
    Bit 9 of 'b' is set when framing error.

    Made ignore the framing and parity error bits if the errored character is
    the checksum.  We can tolerate a framing/parity error there.  The checksum
    character validates the message.

    (closes issue #18474)
    Reported by: nivek
    Patches:
          callerid.c.1.patch uploaded by nivek (license 636) (with modifications)
    Tested by: nivek
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310636 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310585 via svnmerge from
Jonathan Rose [Mon, 14 Mar 2011 15:27:57 +0000 (15:27 +0000)] 
Merged revisions 310585 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r310585 | jrose | 2011-03-14 08:56:22 -0500 (Mon, 14 Mar 2011) | 8 lines

  Adds 'p' as an option to func_volume.  When it is on, the old behavior with DTMF controlling volume adjustment will be enforced.
  When it is off, DTMF will not be processed by the function.

  Programmed by Jonathan Rose
  Reviewed by David Vossel, Leif Madsen, and Russell Bryant

  http://reviewboard.digium.internal/r/93/
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310587 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310448 via svnmerge from
Tilghman Lesher [Sat, 12 Mar 2011 20:27:54 +0000 (20:27 +0000)] 
Merged revisions 310448 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r310448 | tilghman | 2011-03-12 14:24:54 -0600 (Sat, 12 Mar 2011) | 38 lines

  Recorded merge of revisions 310435 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r310435 | tilghman | 2011-03-12 14:22:07 -0600 (Sat, 12 Mar 2011) | 31 lines

    Add AELSub, which provides a stable entry point into AEL subroutines.

    This commit needs some explanation, given that we're adding a new application
    into an existing release branch.  This is generally a violation of our release
    policy, except in very limited circumstances, and I believe this is one of
    those circumstances.

    The problem that this solves is one of the sanity of using multiple dialplan
    languages to define a dialplan.  In the case of the reporter, he or she is
    using AEL is define subroutines, while using Realtime extensions to invoke
    those subroutines.  While you can do this, it's based upon the reality of AEL
    using actual dialplan extensions; however, there is no guarantee that the
    details of _how_ AEL is compiled into extensions will remain stable.  In fact,
    at the time of this commit, it has already changed twice, once in a
    fundamental way.

    Now normally, a new application would only be added to trunk.  However, this
    application is explicitly to create a stable user-level API between versions,
    and adding it to trunk only will not solve the user's problem of switching
    between 1.6.2 and 1.8, nor will it help anybody switching from 1.8 to 1.10.
    Therefore, it needs to go into existing release branches.  For the sake of
    consistency, and also because one of the changes was between 1.4 and 1.6.x,
    I am also electing to commit this to 1.4.

    (closes issue #18910)
     Reported by: alexandrekeller
     Patches:
           20110304__issue18919__1.6.2.diff.txt uploaded by tilghman (license 14)
           20110304__issue18919__1.4.diff.txt uploaded by tilghman (license 14)
     Tested by: alexandrekeller
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310462 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310414 via svnmerge from
Tilghman Lesher [Sat, 12 Mar 2011 20:05:46 +0000 (20:05 +0000)] 
Merged revisions 310414 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r310414 | tilghman | 2011-03-12 13:51:23 -0600 (Sat, 12 Mar 2011) | 7 lines

  Transactional handles should be used for the insertbuf, if available.

  Also, fix a possible resource leak.

  (closes issue #18943)
   Reported by: irroot
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310415 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoremote_bridge_loop: prevent segfault when after transfer of IAX2 of DAHDI call
Alec L Davis [Fri, 11 Mar 2011 06:47:44 +0000 (06:47 +0000)] 
remote_bridge_loop: prevent segfault when after transfer of IAX2 of DAHDI call

If the channel condition is one of the following after breaking out of the loop, don't try to update_peer
(where x = 0/1)
 1). ZOMBIE
 2). cx->tech_pvt != pvtx
 3). gluex != ast_rtp_instance_get_glue(cx->tech->type))

(closes issue #18781)
Reported by: alecdavis
Patches:
      bug18781.diff3.txt uploaded by alecdavis (license 585)
Tested by: alecdavis, ZX81

Review: https://reviewboard.asterisk.org/r/1128/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310287 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd \r\n to remaining http headers passed to ast_http_send
Terry Wilson [Thu, 10 Mar 2011 16:05:45 +0000 (16:05 +0000)] 
Add \r\n to remaining http headers passed to ast_http_send

r309204 changed the behavior of ast_http_send. It now requires headers
to be passed with trailing \r\n. This change updates the remaining
instances in the code that did not pass the \r\n.

(closes issue #18186)
Reported by: nivaldomjunior
Patches:
      res_phoneprov.c.diff uploaded by lathama (license 1028)
      manager.diff.txt uploaded by twilson (license 396)
Tested by: lathama

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310240 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBe more tolerant of what URI we accept for call completion PUBLISH requests.
Mark Michelson [Thu, 10 Mar 2011 15:17:04 +0000 (15:17 +0000)] 
Be more tolerant of what URI we accept for call completion PUBLISH requests.

(closes issue #18946)
Reported by: GeorgeKonopacki
Patches:
      18946.patch uploaded by mmichelson (license 60)
Tested by: GeorgeKonopacki

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310231 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 310141 via svnmerge from
Tilghman Lesher [Thu, 10 Mar 2011 05:53:29 +0000 (05:53 +0000)] 
Merged revisions 310141 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r310141 | tilghman | 2011-03-09 23:51:37 -0600 (Wed, 09 Mar 2011) | 12 lines

  Merged revisions 310140 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r310140 | tilghman | 2011-03-09 23:38:44 -0600 (Wed, 09 Mar 2011) | 5 lines

    Initialize column size to 0 to deal with a potential UnixODBC bug on 64-bit systems.

    (closes issue #18295)
     Reported by: pruiz
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310142 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoReturns with an error notice if CHANNEL function of SIP channel is read without argum...
Jonathan Rose [Tue, 8 Mar 2011 20:19:32 +0000 (20:19 +0000)] 
Returns with an error notice if CHANNEL function of SIP channel is read without arguments.

(Closes issue #18653)
Reported by: wuwu
Patches:
      diff.patch uploaded by jrose (license 1225)
Tested by: jrose

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310088 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSpelling fix in "calendar show calendar"
Terry Wilson [Tue, 8 Mar 2011 18:10:50 +0000 (18:10 +0000)] 
Spelling fix in "calendar show calendar"

s/Cartegories/Catagories/

(closes issue #18931)
Reported by: pdugas
Patches:
      res_calendar.c.patch uploaded by pdugas (license 1222)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@310039 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMake pri parameter description consistent.
Richard Mudgett [Tue, 8 Mar 2011 16:37:02 +0000 (16:37 +0000)] 
Make pri parameter description consistent.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@309994 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 309857 via svnmerge from
Jonathan Rose [Mon, 7 Mar 2011 22:07:25 +0000 (22:07 +0000)] 
Merged revisions 309857 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r309857 | jrose | 2011-03-07 16:04:44 -0600 (Mon, 07 Mar 2011) | 15 lines

  Merged revisions 309856 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r309856 | jrose | 2011-03-07 16:02:12 -0600 (Mon, 07 Mar 2011) | 8 lines

    Bug fix for MixMonitor involving filenames with '.' not in the extension

    Closes issue #18391)
    Reported by: pabelanger
    Patches:
          bugfix.patch uploaded by jrose (license 1225)
    Tested by: jrose
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@309858 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 309251 via svnmerge from
Tilghman Lesher [Mon, 7 Mar 2011 00:54:42 +0000 (00:54 +0000)] 
Merged revisions 309251 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r309251 | tilghman | 2011-03-01 19:06:02 -0600 (Tue, 01 Mar 2011) | 7 lines

  Revert previous 2 commits, and instead conditionally redefine the same macro used in flex 2.5.35 that clashed with our workaround.

  Not surprisingly, the workaround was exactly the same code as was provided by
  the Flex maintainers, albeit in two different places, in different macros.

  This should fix the FreeBSD builds, which have an older version of Flex.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@309808 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoIndicate that Asterisk uses the Allow header to determine if MESSAGE requests should...
Mark Michelson [Mon, 7 Mar 2011 00:13:36 +0000 (00:13 +0000)] 
Indicate that Asterisk uses the Allow header to determine if MESSAGE requests should be sent.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@309765 65c4cc65-6c06-0410-ace0-fbb531ad65f3