dect
/
asterisk
Archived
13
0
Fork 0
Commit Graph

15455 Commits

Author SHA1 Message Date
mmichelson 9e3feeac9b Remove a debug line
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115591 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 22:36:50 +00:00
mmichelson 71a41a28b1 Adding support for "urgent" voicemail messages. Messages which are
marked "urgent" are considered to be higher priority than other messages
and so they will be played before any other messages in a user's mailbox.

There are two ways to leave an urgent message. 
1. send the 'U' option to VoiceMail().
2. Set review=yes in voicemail.conf. This will give instructions for 
   a caller to mark a message as urgent after the message has been recorded.

I have tested that this works correctly with file and ODBC storage, and James
Rothenberger (who wrote initial support for this feature) has tested its use
with IMAP storage.

(closes issue #11817)
Reported by: jaroth
	Based on branch http://svn.digium.com/svn/asterisk/team/jrothenberger/asterisk-urgent
Tested by: putnopvut, jaroth



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115588 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 21:22:42 +00:00
bbryant d2e5ffcec0 Update CHANGES file for previous commit of ENUM and TXCIDNAME changes.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115586 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 20:05:50 +00:00
bbryant 856468a462 The following patch adds new options and alters the default behavior of the ENUM* functions. The TXCIDNAME lookup function has also gotten a
new paramater. The new options for ENUM* functions include 'u', 's', 'i', and 'd' which return the full uri, trigger isn specific rewriting, look 
for branches into an infrastructure enum tree, or do a direct dns lookup of a number respectively. The new paramater for TXCIDNAME adds a 
zone-suffix argument for looking up caller id's in DNS that aren't e164.arpa.

This patch is based on the original code from otmar, modified by snuffy, and tested by jtodd, me, and others.

(closes issue #8089)
Reported by: otmar
Patches:
      20080508_bug8089-1.diff 
	- original code by otmar (license 480), 
	- revised by snuffy (license 35)
Tested by: oej, otmar, jtodd, Corydon76, snuffy, alexnikolov, bbryant


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115584 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 19:54:45 +00:00
tilghman 44e2dbcb9a Allow a password change to be validated by an external script.
(closes issue #12090)
 Reported by: jaroth
 Patches: 
       vm-check-newpassword.diff.txt uploaded by mvanbaak (license 7)
       20080509__bug12090.diff.txt uploaded by Corydon76 (license 14)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115582 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 17:28:06 +00:00
file aac883fcbc Merged revisions 115579 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115579 | file | 2008-05-09 13:34:08 -0300 (Fri, 09 May 2008) | 2 lines

Improve res_ninit and res_ndestroy autoconf logic on the Darwin platform.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115580 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-09 16:36:58 +00:00
russell 91c7607101 Merged revisions 115568 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115568 | russell | 2008-05-08 14:19:50 -0500 (Thu, 08 May 2008) | 2 lines

Remove debug output.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115569 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 19:20:35 +00:00
russell 90781e7443 Merged revisions 115565 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r115565 | russell | 2008-05-08 14:15:25 -0500 (Thu, 08 May 2008) | 33 lines

Merged revisions 115564 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r115564 | russell | 2008-05-08 14:14:04 -0500 (Thu, 08 May 2008) | 25 lines

Fix a race condition that bbryant just found while doing some IAX2 testing.
He was running Asterisk trunk running IAX2 calls through a few Asterisk boxes,
however, the audio was extremely choppy.  We looked at a packet trace and saw
a storm of INVAL and VNAK frames being sent from one box to another.

It turned out that what had happened was that one box tried to send a CONTROL
frame before the 3 way handshake had completed.  So, that frame did not include
the destination call number, because it didn't have it yet.  Part of our recent
work for security issues included an additional check to ensure that frames that
are supposed to include the destination call number have the correct one.  This
caused the frame to be rejected with an INVAL.  The frame would get retransmitted
for forever, rejected every time ...

This race condition exists in all versions that got the security changes,
in theory.  However, it is really only likely that this would cause a problem in
Asterisk trunk.  There was a control frame being sent (SRCUPDATE) at the _very_
beginning of the call, which does not exist in 1.2 or 1.4.  However, I am fixing
all versions that could potentially be affected by the introduced race condition.

These changes are what bbryant and I came up with to fix the issue.  Instead of
simply dropping control frames that get sent before the handshake is complete,
the code attempts to wait a little while, since in most cases, the handshake
will complete very quickly.  If it doesn't complete after yielding for a little
while, then the frame gets dropped.

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115566 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 19:17:04 +00:00
russell cee0388b1c Merged revisions 115561 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115561 | russell | 2008-05-08 11:11:33 -0500 (Thu, 08 May 2008) | 3 lines

Don't give up on attempting an outbound registration if we receive a 408 Timeout.
(closes issue #12323)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115562 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 16:14:08 +00:00
russell 686f8f59f8 Merged revisions 115557 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115557 | russell | 2008-05-08 10:37:49 -0500 (Thu, 08 May 2008) | 3 lines

remove postgres_cdr.sql, as the CDR schema is in realtime_pgsql.sql, as well
(closes issue #9676)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115558 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 15:38:27 +00:00
russell 34418acf02 Merged revisions 115554 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115554 | russell | 2008-05-08 10:32:08 -0500 (Thu, 08 May 2008) | 3 lines

Don't exit the script if Asterisk is not running.
(closes issue #12611)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115555 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 15:32:48 +00:00
russell 17aff8c655 Merged revisions 115551 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115551 | russell | 2008-05-08 10:24:54 -0500 (Thu, 08 May 2008) | 4 lines

Don't use a channel before checking for channel allocation failure.
(closes issue #12609)
Reported by: edantie

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115552 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 15:26:49 +00:00
mattf 46dc1e383c Remove unused code as well as demote an error message to a debug message
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115548 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 15:04:45 +00:00
russell 3210eb27d9 Merged revisions 115545 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115545 | russell | 2008-05-08 09:40:53 -0500 (Thu, 08 May 2008) | 4 lines

Use the same method for executing Asterisk as the rest of the script.
(closes issue #12611)
Reported by: b_plessis

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115546 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-08 14:41:12 +00:00
russell 6a3cb06cc0 Fix up a problem that was introduced into the scheduler when it was converted
to use doubly linked lists.  The schedule() function had an optimization that
had it try to guess which direction would be better for the traversal to insert
the task into the scheduler queue.  However, if the code chose the path where
it traversed the queue in reverse, and the result was that the task should be
at the head of the queue, then the code would actually put it at the tail,
instead.

(Problem found by bbryant, debugged and fixed by bbryant and me)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115537 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 21:11:33 +00:00
tilghman 2c0065d862 Advance to next sounds release
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115535 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 20:22:09 +00:00
tilghman 63834a4e15 Don't free the object on destroy, as astobj2 takes care of that for you
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115525 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 18:40:21 +00:00
russell a2d96f48ab Only save a password if a username exists.
(closes issue #12600)
Reported By: suretec
Patch by me


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115523 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 18:33:50 +00:00
russell 2420ef49a1 Use the default that the log output claims will be used for the basedn
(closes issue #12599)
Reported by: suretec
Patches:
      12599.patch uploaded by juggie (license 24)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115521 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 18:30:12 +00:00
russell 737fc35958 Let chan_h323 build in dev mode
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115519 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 18:24:51 +00:00
russell e13eec51c7 Blocked revisions 115517 via svnmerge
........
r115517 | russell | 2008-05-07 13:17:19 -0500 (Wed, 07 May 2008) | 5 lines

Track peer references when stored in the sip_pvt struct as the peer related to
a qualify ping or a subscription.  This fixes some realtime related crashes.
(closes issue #12588)
(closes issue #12555)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115518 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 18:17:43 +00:00
russell 6f846c3291 re-add dlinkedlists.h to trunk, oops!
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115515 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 17:38:36 +00:00
russell 6c349a860e Merged revisions 115512 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r115512 | russell | 2008-05-07 11:24:09 -0500 (Wed, 07 May 2008) | 11 lines

Merged revisions 115511 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r115511 | russell | 2008-05-07 11:22:49 -0500 (Wed, 07 May 2008) | 3 lines

Remove remnants of dlinkedlists.  I didn't actually use them in the final version
of my IAX2 improvements.

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115513 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 17:28:19 +00:00
tilghman cadeb7b349 Update typos in description fields
(closes issue #12598)
 Reported by: suretec
 Patches: 
       asterisk_schema_changes.patch uploaded by suretec (license 70)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115509 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 13:49:15 +00:00
file 5669e609e5 Remove redundant header getting.
(closes issue #12597)
Reported by: hooi


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115507 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-07 13:41:25 +00:00
mmichelson 7a0fd1b758 Get refcounter to build with LOW_MEMORY defined
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115473 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 20:15:02 +00:00
qwell 6820828da6 Merged revisions 115422 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r115422 | qwell | 2008-05-06 14:55:29 -0500 (Tue, 06 May 2008) | 15 lines

Merged revisions 115421 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r115421 | qwell | 2008-05-06 14:54:57 -0500 (Tue, 06 May 2008) | 7 lines

read requires an argument on some non-bash shells

(closes issue #12593)
Reported by: bkruse
Patches:
      getilbc.sh_12593_v1.diff uploaded by bkruse (license 132)

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115423 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 19:55:45 +00:00
qwell a30c03fc7a Merged revisions 115418 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115418 | qwell | 2008-05-06 14:34:58 -0500 (Tue, 06 May 2008) | 7 lines

Switch to using ast_random() rather than just rand().
This does not fix the bug reported, but I believe it is correct.

(from issue #12446)
Patches:
      bug_12446.diff uploaded by snuffy (license 35)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115419 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 19:38:44 +00:00
tilghman 53e6d21115 Merged revisions 115415 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115415 | tilghman | 2008-05-06 14:31:39 -0500 (Tue, 06 May 2008) | 2 lines

Don't print the terminating NUL.  (Closes issue #12589)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115416 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 19:32:29 +00:00
russell 5d1a0b6258 Change some NOTICE log messages to debug.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115344 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 15:14:55 +00:00
file a1f4f6bb09 Merged revisions 115341 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115341 | file | 2008-05-06 10:54:15 -0300 (Tue, 06 May 2008) | 2 lines

Add in missing argument.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115342 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-06 13:55:44 +00:00
tilghman 6319eab542 Merge refcounting of res_odbc
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115337 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 23:38:15 +00:00
tilghman 42bb6b27fd Merged revisions 115333 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115333 | tilghman | 2008-05-05 17:50:31 -0500 (Mon, 05 May 2008) | 7 lines

Separate verbose output from CLI output, by using a preamble.
(closes issue #12402)
 Reported by: Corydon76
 Patches: 
       20080410__no_verbose_in_rx_output.diff.txt uploaded by Corydon76 (license 14)
       20080501__no_verbose_in_rx_output__1.4.diff.txt uploaded by Corydon76 (license 14)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115334 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 23:00:31 +00:00
mmichelson 9933d27a31 #execing the same file multiple times led to warning messages saying that the same file was
being #included twice. This was due to the fact that #exec created a temporary file which
was then #included. The name of the temporary file was the name of the #exec'd file, with
the Unix timestamp and thread ID concatenated. The issue was that if multiple #exec statements
of the same file were reached in the same second, then the result was that the temporary files
would have duplicate names. To resolve this, the temporary file now has microsecond resolution
for the timestamp portion.

(closes issue #12574)
Reported by: jmls
Patches:
      12574.patch uploaded by putnopvut (license 60)
Tested by: jmls, putnopvut



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115329 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 22:14:06 +00:00
file 82f9045435 Merged revisions 115327 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115327 | file | 2008-05-05 19:10:05 -0300 (Mon, 05 May 2008) | 2 lines

Make sure that either the main speex library contains preprocess functions or that speexdsp does. If both fail then speex stuff can not be built.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115328 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 22:13:57 +00:00
russell d380bc9762 Simplify code by using a taskprocessor for dispatching events in the Asterisk core.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115324 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 22:01:56 +00:00
mmichelson 9a51bce912 Merged revisions 115320 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115320 | mmichelson | 2008-05-05 16:41:34 -0500 (Mon, 05 May 2008) | 13 lines

Don't consider a caller "handled" until the caller is bridged with
a queue member. There was too much of an opportunity for the member
to hang up (either during a delay, announcement, or overly long
agi) between the time that he answered the phone and the time when
he actually was bridged with the caller. The consequence of this
was that if the member hung up in that interval, then proper
abandonment details would not be noted in the queue log if the caller
were to hang up at any point after the member hangup.

(closes issue #12561)
Reported by: ablackthorn


........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115321 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 21:43:21 +00:00
russell d93769e668 Remove my rant, since I have now replaced the rant with code.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115315 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 20:28:17 +00:00
tilghman 24584b459e Merged revisions 115312 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115312 | tilghman | 2008-05-05 15:17:55 -0500 (Mon, 05 May 2008) | 2 lines

Reverse order, such that user configs override default selections

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115313 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 20:22:08 +00:00
tilghman 467f5dbb86 Merged revisions 115308 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115308 | tilghman | 2008-05-05 14:55:55 -0500 (Mon, 05 May 2008) | 2 lines

Err, the documentation on the return value of ast_odbc_backslash_is_escape is exactly backwards.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115309 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 19:57:28 +00:00
russell b30204c267 Merged revisions 115304 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115304 | russell | 2008-05-05 14:49:25 -0500 (Mon, 05 May 2008) | 5 lines

Avoid putting opaque="" in Digest authentication.  This patch came from switchvox.
It fixes authentication with Primus in Canada, and has been in use for a very long
time without causing problems with any other providers.
(closes issue AST-36)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115305 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 19:50:24 +00:00
tilghman 4e003c03f0 Note change for ExecIf syntax (caught by jmls on IRC)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115302 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 19:42:36 +00:00
tilghman 9844825c4b Optionally display the value of several variables within the Status command.
(Closes issue AST-34)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115301 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 19:33:14 +00:00
file 520150ff17 Document the 'B' option of app_chanspy.
(closes issue #12582)
Reported by: IgorG
Patches:
      app_chanspy_B_option.diff uploaded by IgorG (license 20)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115290 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 13:52:44 +00:00
kpfleming 69e8b962a3 clarify wording
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115288 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 10:55:09 +00:00
tilghman ffb620f33d Merged revisions 115285 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115285 | tilghman | 2008-05-04 22:22:25 -0500 (Sun, 04 May 2008) | 7 lines

When starting Asterisk, bug out if Asterisk is already running.
(closes issue #12525)
 Reported by: explidous
 Patches: 
       20080428__bug12525.diff.txt uploaded by Corydon76 (license 14)
 Tested by: mvanbaak

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115286 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-05 03:25:35 +00:00
file a0331e1cf4 Merged revisions 115282 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115282 | file | 2008-05-03 23:09:44 -0300 (Sat, 03 May 2008) | 2 lines

Expand the test function for GCC attributes so that more complex attributes are properly recognized.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115283 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-04 02:11:01 +00:00
file 62bad6ec1c Merged revisions 115279 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115279 | file | 2008-05-03 22:50:59 -0300 (Sat, 03 May 2008) | 2 lines

For my next trick I will make these work with what our autoconf header file gives us.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115280 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-04 01:52:00 +00:00
file d0da046cdd Merged revisions 115276 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r115276 | file | 2008-05-03 22:43:26 -0300 (Sat, 03 May 2008) | 2 lines

Treat warnings as errors when checking if a GCC attribute exists. We have to do this as GCC will just ignore the attribute and pop up a warning, it won't actually fail to compile.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115277 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-04 01:45:21 +00:00
dhubbard 42505cae88 app_voicemail uses a taskprocessor for mwi notification subscriptions
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115274 f38db490-d61c-443f-a65b-d21fe96a405b
2008-05-03 04:23:18 +00:00