You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/apps
Russell Bryant 03ad135134
Fix a memory leak that I just noticed in the device state handling in app_queue.
19 years ago
..
Makefile remove extraneous -m64 flag that is not needed 20 years ago
app_adsiprog.c
app_alarmreceiver.c Put in missing \ns on the end of ast_logs (issue #7936 reported by wojtekka) 20 years ago
app_authenticate.c Jump logic was backwards: goto returns 0 if it succeeds, and we should jump if authentication fails. (Bug #7907) 20 years ago
app_cdr.c
app_chanisavail.c
app_chanspy.c Fix a small typo. Synopsis lines shouldn't have a newline 20 years ago
app_controlplayback.c
app_curl.c Move thread-unsafe initializer to the module loading code; add the 20 years ago
app_cut.c Fix a couple of typos in applications.. Initially spotted by mrobinson. 20 years ago
app_datetime.c
app_db.c Fix a couple of typos in applications.. Initially spotted by mrobinson. 20 years ago
app_dial.c This update will fix the situation that occurs as described by 9717, where when several targets are specified for a dial, if any one them reports FAIL, the whole call gets FAIL, even though others were ringing OK. I rearranged the priorities, so that a new disposition, NULL, is at the lowest level, and the disposition get init'd to NULL. Then, next up is FAIL, and next up is BUSY, then NOANSWER, then ANSWERED. All the related set routines will only do so if the disposition value to be set to is greater than what's already there. This gives the intended effect. So, if all the targets are busy, you'd get BUSY for the call disposition. If all get BUSY, but one, and that one rings is not answered, you get NOANSWER. If by some freak of nature, the NULL value doesn't get overridden, then the disp2str routine will report NOANSWER as before. 19 years ago
app_dictate.c If openstream fails, then we crash (Issue 8564) 20 years ago
app_directed_pickup.c Update email address to my Digium one 21 years ago
app_directory.c Replicate fix from 51158 (app_voicemail) to app_directory (Issue 9224) 19 years ago
app_disa.c
app_dumpchan.c clarify file headers that mention disclaimer usage 20 years ago
app_echo.c
app_enumlookup.c
app_eval.c
app_exec.c
app_externalivr.c app_externalivr needs a real silence file, and additional 20 years ago
app_festival.c When doing a fork() and exec(), two problems existed (Issue 8086): 20 years ago
app_flash.c
app_forkcdr.c
app_getcpeid.c
app_groupcount.c Merge rewritten group counting support. No more storing data on the variable list of the channels. That was bad, mmmk? (issue #7497 reported by sabbathbh) 19 years ago
app_hasnewvoicemail.c Put in missing \ns on the end of ast_logs (issue #7936 reported by wojtekka) 20 years ago
app_ices.c When doing a fork() and exec(), two problems existed (Issue 8086): 20 years ago
app_image.c
app_intercom.c
app_ivrdemo.c
app_lookupblacklist.c
app_lookupcidname.c
app_macro.c Issue 9602 - segfault in app_macro 19 years ago
app_math.c Add deprecation notice about app_math (issue #7957 reported by k-egg) 20 years ago
app_md5.c
app_meetme.c Keep a global array of variables indicating whether certain conference rooms are in use. This ensures that two people going into a new dynamic conference when the 'e' option is set don't go into the same conference room. (issue #8835 reported by eliel) 20 years ago
app_milliwatt.c fix a seg fault due to assuming that space gets allocatted on the stack in the 21 years ago
app_mixmonitor.c Now that filename is part of the structure and since it comes before postprocess... we have to add it to our postprocess line. (reported on asterisk-dev by Boris Bakchiev) 20 years ago
app_mp3.c When doing a fork() and exec(), two problems existed (Issue 8086): 20 years ago
app_nbscat.c When doing a fork() and exec(), two problems existed (Issue 8086): 20 years ago
app_osplookup.c OSPNext does not handle success/failure correctly (issue #7147 reported and fixed by eborgstrom) 20 years ago
app_page.c Convert a tab to spaces so that the documentation is printed out properly 20 years ago
app_parkandannounce.c
app_playback.c Playback() wasn't setting PLAYBACKSTATUS under several circumstances. 20 years ago
app_privacy.c Prompt does not request '#' to end input, so the application should not require it 20 years ago
app_queue.c Fix a memory leak that I just noticed in the device state handling in app_queue. 19 years ago
app_random.c Bug 7779 - Using initstate(3) means that we cannot unload this module once loaded. 20 years ago
app_read.c
app_readfile.c don't crash when asked to read from a file that doesn't exist (issue #6786) 21 years ago
app_realtime.c
app_record.c Documentation update (#9053, jsmith) 20 years ago
app_rpt.c Fix a bunch of places where pthread_attr_init() was called, but 20 years ago
app_sayunixtime.c
app_senddtmf.c Adds documentation to show what the w flag. 21 years ago
app_sendtext.c
app_setcallerid.c
app_setcdruserfield.c
app_setcidname.c
app_setcidnum.c
app_setrdnis.c
app_settransfercapability.c
app_skel.c fix this to actually compile so people can learn from it 20 years ago
app_sms.c When sending an SMS with a user data header properly set the UDH flag in the first byte. (issue #8347 reported by hoffmeis) 20 years ago
app_softhangup.c
app_sql_postgres.c backport some mutex initialization and linked list handling fixes from trunk 20 years ago
app_stack.c Bug 6830 - Let GosubIf work with the same conditions as a GotoIf (change in API approved by Russell) 21 years ago
app_system.c
app_talkdetect.c
app_test.c Free frames read from the channel when measuring noise. This resulted in about 20 years ago
app_transfer.c
app_txtcidname.c
app_url.c fix a case where an HTML frame would be leaked 20 years ago
app_userevent.c
app_verbose.c Make sure that only the "|" is a recognized delimiter for Verbose(), as the app documentation already specifies. #7080 (alessiof reporting) 20 years ago
app_voicemail.c If we have a negative current message, we shouldn't go back even further... 19 years ago
app_waitforring.c
app_waitforsilence.c Increase the silence threshold to 128 to "fix" it, so I'm told. (issue #6595 reported by davetroy fixed by casper) 20 years ago
app_while.c Don't set a new value for the END_ variable on the channel before using the 20 years ago
app_zapateller.c
app_zapbarge.c backport a couple of frame leak fixes from the trunk (revisions 33446, 33447) 20 years ago
app_zapras.c When doing a fork() and exec(), two problems existed (Issue 8086): 20 years ago
app_zapscan.c backport a couple of frame leak fixes from the trunk (revisions 33446, 33447) 20 years ago
enter.h
leave.h
rpt_flow.pdf