aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2006-12-14importing files for 1.2.14 releasekpfleming3-0/+4280
git-svn-id: http://svn.digium.com/svn/asterisk/tags/1.2.14@48468 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-14Creating tag for the release of asterisk-1.2.14kpfleming4-4274/+5
git-svn-id: http://svn.digium.com/svn/asterisk/tags/1.2.14@48466 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-13This small patch fixes bug 8541, where the L option to the Dial app wasn't ↵murf1-2/+5
working right. A similar bug (8386) was filed and fixed earlier, but an intervening bug fix to a DTMF problem broke the L() code in a different way. Hopefully, everything is happy now. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48434 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-12importing files for 1.2.14 releasekpfleming3-0/+4272
git-svn-id: http://svn.digium.com/svn/asterisk/tags/1.2.14@48420 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-12Creating tag for the release of asterisk-1.2.14kpfleming0-0/+0
git-svn-id: http://svn.digium.com/svn/asterisk/tags/1.2.14@48419 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-12add silence fileskpfleming10-0/+0
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48403 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-11the english language can be a tricky beastmogorman1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48398 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-11app_externalivr needs a real silence file, and additionalmogorman3-1/+32
changes to add silence files into core instead of extra patch provided by bug 8177 with minor additions. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48394 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-11When doing a fork() and exec(), two problems existed (Issue 8086):tilghman8-20/+102
1) Ignored signals stayed ignored after the exec(). 2) Signals could possibly fire between the fork() and exec(), causing Asterisk signal handlers within the child to execute, which caused nasty race conditions. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48374 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-10This version applies the patch suggested by stevens in bug 7836 (make ↵murf1-6/+5
inbound channel RINGING state consistent with other channels). git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48371 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-09Use locking when accessing the registrations list. This list is not actuallyrussell1-2/+11
used very often, so the likelihood of there being a problem is pretty small, but still possible. For example, if the CLI command to list the registrations was called at the same time that a reload was occurring and the registrations list was getting destroyed and rebuilt, a crash could occur. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48361 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-07Ensure that the file position is not incremented beyond the total number ofrussell1-0/+1
files available for playback. (issue #8539, ulogic) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48356 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-06Fix the name of the rtignoreregexpire option in the sample configuration file.russell1-1/+1
(issue #8526, arkadia) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48322 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-06added the export and import of the MISDN_ADDRESS_COMPLETE Variable to ↵crichter3-0/+23
inidcate wether the extension is already completely dialed or if there might come additional digits by information elements. also added some docs for that. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48321 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-06Issue #8528 - make sure we don't delete the dialog too quickly after receivingoej1-6/+15
a 487. Move 487 handling into handle_response_invite where it really belongs and don't add an ALREADYGONE flag to the dialog. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48320 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-06changed a few debugs to higher debug levelscrichter1-4/+8
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48319 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-06Don't add Contact header on BYE, CANCEL, MESSAGE requestsoej1-1/+2
(Bye, Cancel backported from 1.4, MESSAGE bug reported to me by Gunnar at Omnitor) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48315 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-05Only set the ALREADYGONE flag once in handle_response()oej1-2/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48272 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-05If the recording in the database is too large, it will fail to retrieve withtilghman1-13/+16
an mmap error. Not too sure why this doesn't happen when we put it in the database, also, but since that doesn't seem to be broken, I'm not going to fix it (at least until someone reports it). Solution is to ask for the file in smaller chunks. (Bug 8385) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48251 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-04Revert change from 8016 - this breaks other stuff... Needs further review.qwell1-0/+2
Tip: When you've reported a bug about something and somebody has put up a patch for it.. It's not a good idea to open a completely new bug and say that something is broken because of the patch in the other bug - PLEASE mention something in the bug where the patch was actually created. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48246 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-04Fix an issue where a message isn't saved correctly when using ODBC storage ↵qwell1-2/+0
and reviewing a message. Issue 8016 - patch by sokhapkin. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48236 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-04If the generic bridge tells us not to retry, and we have a frame to spit out ↵file1-0/+2
then break the bridge. Props to markit in #asterisk-bugs for bringing this up. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48233 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-01if Dial() is going to send music-on-hold to the calling party, it has to ↵kpfleming1-0/+1
send PROGRESS first to ensure that the reverse audio path has been setup first (BE-106) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48192 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-01Fix a small typo - issue 8848, reported by pabelangerqwell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48183 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Issue 8319 - noriyuki - nonce-count updated *after* useoej1-1/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48165 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Don't write AST_FRAME_NULL or AST_FRAME_IAX frames out to the channel ↵file1-0/+5
driver. (issue #8390 reported by hselasky) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48161 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Only print out debug message if bridged channel is not NULL. (issue #8412 ↵file1-1/+1
reported by jubilex) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48157 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Do not listen for DTMF on the bridge that comes into existence when ↵file1-6/+0
ParkedCall is executed. This means native bridging can now occur for this. (issue #8406 reported by kebl0155) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48154 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Print certain CDR messages out at the NOTICE level versus WARNING since they ↵file1-6/+6
can occur when used with the CDR applications and are perfectly fine. (issue #8367 reported by dartvader) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48151 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Remember the pointer to the allocated block of memory so that we can free it ↵file1-4/+6
and not cause a memory leak. (issue #8449 reported by arkadia) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48146 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Document 'port' for SIP peers, came up because of the current mailing list ↵file1-0/+2
thread. (issue #8450 reported by blitzrage) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48142 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Do proper test and don't leave dialogs hanging...oej1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48127 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-29If the frame was duplicated before writing out then we need to free it. ↵file1-0/+2
(issue #8429 reported by edguy3) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48106 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-28According to the research I have done we never needed to include compiler.h ↵file1-5/+0
in the first place so let's not! (issue #8430 reported by edguy3) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48087 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-27Use the proper function to get the new message count instead of always using ↵file1-14/+5
the filesystem. (issue #8421 reported by slimey) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48053 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-27Random MOH wasn't really random (bug 8381)tilghman1-17/+14
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48045 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-27Do not reference the freed outgoing structure in the debug message. (issue ↵file1-1/+1
#8425 reported by arkadia) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@48037 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-24Change some logging levels. Not having hints is not an ERROR, but still ↵oej1-2/+2
should be reported. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47987 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-23fixed a litle bug regarding HOLD/RETRIEVE. beatufied some logs, changed some ↵crichter3-53/+53
loglevels. changed the default value of block_on_alarm git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47968 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-23Remove unused variable (rizzo)oej1-4/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47958 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-22This is the fix for bug 8386, wherein the time-limit args to dial didn't ↵murf1-7/+12
work correctly git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47910 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-20Failing to trap -1 error from mmap causes segfault (Issue 8385)tilghman1-2/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47862 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-20Don't forget to byte swap if we are exiting the smoother feed early. (issue ↵file1-0/+4
#8287 reported by arturs) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47859 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-20Free history items at the end of use of the temporary SIP pvt structure. ↵file1-0/+6
(issue #8383 reported by benh) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47855 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-20Just to be safe, disable all the scheduled items after deleting a scheduler ↵oej1-2/+9
entry (rizzo) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47842 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-17backport proper channel_find_locked behavior from 1.4 branch (noted by Steve ↵kpfleming1-30/+21
Davies on asterisk-dev list) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47802 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16Fix a couple of typos in applications.. Initially spotted by mrobinson.qwell4-5/+5
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47780 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16update clearly wrong documentation regarding cdr_customkpfleming1-18/+3
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47776 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16Look for the header file specifically in all cases, not just the existence ↵file1-1/+1
of the directory. (issue #8358 reported by mrness) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47761 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16Because of the way chan_local is written we should be extra careful and make ↵file1-0/+21
sure our callback functions have a tech_pvt. (issue #8275 reported by mflorell) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@47750 f38db490-d61c-443f-a65b-d21fe96a405b