aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2006-03-25Add micro-http server and abstract manager interface, make snmp not die markster16-172/+823
on reload. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14953 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25revert loader changes that have clearly not undergone adequate testing ↵kpfleming14-664/+148
before commit git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14952 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Bug 6508 - Redirect arbitrary channel to another extension from the dialplantilghman1-0/+160
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14915 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Bug 4377 - Round 2 of the loader updatestilghman13-145/+661
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14886 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Bug 6670 - Additional parameters to the CHANNEL functilghman1-1/+13
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14870 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Merged revisions 14868 via svnmerge from tilghman1-12/+30
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14868 | tilghman | 2006-03-24 23:07:52 -0600 (Fri, 24 Mar 2006) | 2 lines Bug 6601 - More configuration abilities for the RH init script ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14869 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Merged revisions 14830 via svnmerge from tilghman1-3/+3
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14830 | tilghman | 2006-03-24 23:01:16 -0600 (Fri, 24 Mar 2006) | 2 lines Fix incorrect size of zeroing (left over from when maxmsg was hardcoded at 100) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14837 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-25Merged revisions 14821 via svnmerge from tilghman1-2/+6
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14821 | tilghman | 2006-03-24 22:09:04 -0600 (Fri, 24 Mar 2006) | 2 lines Bug 6783 - When context is specified, voicemail should look for mailboxes in that context ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14822 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24Do the (expensive) LOCAL_USER_ADD only after we are surerizzo1-2/+2
that arguments are valid. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14785 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24as discussed on the -dev list, introduce a macro to simplify therizzo1-0/+5
writing of common constructs like chan = !ast_strlen_zero(cdr->channel) ? cdr->channel : "<unknown>"; (or the if/then/else form) into chan = S_OR(cdr->channel, "<unknown>"); The name can be changed if we find a better (and not too long) one; currently, it is S as String, OR as it mimics the behaviour of the || operator, but applied to strings. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14747 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24Add missingrizzo3-0/+13
#include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") to these files. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14714 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24Merged revisions 14704 via svnmerge from russell1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14704 | russell | 2006-03-24 09:48:11 -0500 (Fri, 24 Mar 2006) | 2 lines use the correct variable in an error message (issue #6791) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14705 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24Merged revisions 14659 via svnmerge from bweschke1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14659 | bweschke | 2006-03-23 22:53:42 -0600 (Thu, 23 Mar 2006) | 3 lines Fix a typo in the app description ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14660 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24 Doxygen typo fix.bweschke1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14612 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24Block r14610 from /trunk as it conflicts with sched.h in /trunkbweschke0-0/+0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14611 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-24don't treat timeouts as errors in ast_cond_timedwaitkpfleming1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14593 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23compute scheduler thread timeout properlykpfleming1-1/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14573 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23commit file's work to convert iax2 multithreading to use pthread conditions ↵kpfleming1-18/+46
instead of signals (with some modifications) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14570 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Merged revisions 14523 via svnmerge from file1-0/+3
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14523 | file | 2006-03-23 17:51:50 -0400 (Thu, 23 Mar 2006) | 2 lines Issue #6764 - Return BUSY signal when other party is busy at Attended Transfer (Reported by mnachev) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14525 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Allow channels to be moved if channel change is requested in SETUP_ACK, also ↵mattf2-10/+16
add a WAY cool new field to the nsf option git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14521 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23ensure global variables lock is held during 'show globals' CLI commandkpfleming1-1/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14519 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23correct typokpfleming1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14508 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23don't wrap this in ifdef... using va_start is safe on all platforms :-)kpfleming1-4/+0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14479 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Merged revisions 14467 via svnmerge from bweschke1-0/+2
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14467 | bweschke | 2006-03-23 14:43:05 -0600 (Thu, 23 Mar 2006) | 3 lines Bug #5884 - fix a possible race state in app_meetme when a channel has gone away and we are reading continuously for more frames. (mneuhauser) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14470 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Merged revisions 14462 via svnmerge from russell1-8/+9
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14462 | russell | 2006-03-23 15:13:48 -0500 (Thu, 23 Mar 2006) | 2 lines don't crash when asked to read from a file that doesn't exist (issue #6786) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14463 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23- In response to asterisk-users discussion - show which peers in "sip show ↵oej1-10/+23
peers" and "sip show peer" that are cached realtime peers. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14425 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Replace ast_say_* functionn with function pointers, so that modulesrizzo4-35/+104
can override them. On passing, fix a potential problem in the top level Makefile: if a static library is not referenced by any of the core objects, it is not linked in the main program, and will not be available to modules, which leads to failure at runtime when the modules are loaded. This is the case of stdtime/localtime.o, which supplies some core symbolx, but is only linked in as a library. Fix the problem by linking in the object. NOTE: this is intended as a temporary aid to replace the existing say.c with a newer implementation. Once the task is completed, we may decide whether or not the ast_say*() functions should be pluggable or not and possibly revert part of this change. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14382 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23remove duplicate CFLAGS and SOLINK definitions that arerizzo2-9/+0
already in the top level Makefile git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14351 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-23Fix a compile problem on FreeBSD for a missing header.rizzo1-0/+4
In this specific case the problem triggered on app_amd.c, but it keeps coming out from time to time so it is better to fix it in a more central place. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14320 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Merged revisions 14276 via svnmerge from file1-2/+3
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14276 | file | 2006-03-22 18:18:32 -0400 (Wed, 22 Mar 2006) | 2 lines Fix a minor code issue ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14279 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Merged revisions 14275 via svnmerge from file1-18/+36
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14275 | file | 2006-03-22 18:13:30 -0400 (Wed, 22 Mar 2006) | 2 lines Issue #6781 - Verbose levels not enforced in app_voicemail (Reported by flobi) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14277 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Merged revisions 14234 via svnmerge from file2-4/+6
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14234 | file | 2006-03-22 17:38:32 -0400 (Wed, 22 Mar 2006) | 2 lines Issue #5918 - Disposition showing FAILED even though call is answered successfully (Reported by tracinet) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14235 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Issue #6780 - ast_pbx_outgoing_cdr_failed description fix. (Reported and ↵file1-3/+2
fixed by casper) - imported from 1.2 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14220 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22More whitespace and typo fixes for chan_skinny - yay!north1-154/+154
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14188 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Issue #6766 - Make ;user=phone work again - imported from 1.2oej1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14141 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-22Issue #6759, generate warning when refusing connection requiring unsupported ↵oej1-0/+1
SIP extensions git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14110 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21Added separate outsignalling specification, and fixed FEATDMF to allow forjdixon2-15/+81
international inbound calls. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14079 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21update enum documentation to reflect recent changes to the ENUMLOOKUP ↵russell1-18/+20
function (issue #6513) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14053 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21add a CLI command that allows converting files to other formats usingrussell1-10/+10
the Asterisk file format and codec translator modules (issue #6062) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14027 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14001 ↵mattf1-3/+2
f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21update LOCAL_USER_ADD to use ast_callocrussell1-3/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14000 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21Merged revisions 13964 via svnmerge from russell1-1/+6
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13964 | russell | 2006-03-21 13:59:29 -0500 (Tue, 21 Mar 2006) | 3 lines add a note explaining how to set the DYNAMIC_FEATURES variable to allow the use of custom features (issue #6747) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13967 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21Merged revisions 13961 via svnmerge from russell1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13961 | russell | 2006-03-21 13:21:47 -0500 (Tue, 21 Mar 2006) | 3 lines fix crash when using the ParkAndAnnounce application. When using this application, there will be no peer channel to play the parking announcement to. (issue #6756) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13962 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13926 ↵russell0-0/+0
f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21Merged revisions 13888 via svnmerge from russell1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13888 | russell | 2006-03-21 11:22:16 -0500 (Tue, 21 Mar 2006) | 2 lines fix spelling of whiskey ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13889 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21add note about phonetic sounds being removed from asterisk-soundsrussell1-0/+7
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13887 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21Merged revisions 13851 via svnmerge from russell1-1/+3
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13851 | russell | 2006-03-21 10:53:27 -0500 (Tue, 21 Mar 2006) | 2 lines don't add conference participant if the user hangs up while recording their name (issue #6661) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13852 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21spelling and formatting fixes (issue #6760)russell1-518/+518
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13850 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21This was from issue #6765russell1-2/+7
Merged revisions 13814 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r13814 | russell | 2006-03-21 09:20:28 -0500 (Tue, 21 Mar 2006) | 3 lines re-add the Account parameter to the sample call file since it's not really deprecated since the CDR function is no longer built in ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13815 f38db490-d61c-443f-a65b-d21fe96a405b
2006-03-21removed unneeded debugs in level=0crichter1-10/+10
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13787 f38db490-d61c-443f-a65b-d21fe96a405b