7294ba3852 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 44312 via svnmerge from  
							
							... 
							
							
 
							
							https://svn.digium.com/svn/asterisk/branches/1.4 
........
r44312 | mogorman | 2006-10-03 17:35:43 -0500 (Tue, 03 Oct 2006) | 2 lines
fix issue with dialing client without resource.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44313  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								ae8cc3e18b 
								
							
								 
							
						 
						
							
							
								
								bug  #8076  check option_debug before printing to debug channel.  
							
							... 
							
							
 
							
							patch provided in bugnote, with minor changes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44253  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								deb9cb88fb 
								
							
								 
							
						 
						
							
							
								
								44240 same as but without the removing of chan_jingle and such, as I hope to finish jingle support for 1.6  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44241  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								3e4a081e1c 
								
							
								 
							
						 
						
							
							
								
								Make callerid fields in Manager events more consistent. CallerIDNum for number and CallerIDName for name. (issue  #7976  reported by suhler)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44217  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								c0a16b54c6 
								
							
								 
							
						 
						
							
							
								
								Get rid of the IS_NULL_STRING macro and use ast_strlen_zero instead (issue  #8070  reported by wrmem)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44153  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								e92c34cc38 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 44055 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.4 
........
r44055 | kpfleming | 2006-09-29 17:47:40 -0500 (Fri, 29 Sep 2006) | 2 lines
fix a few build system bugs, and convert Makefiles to be compatible with GNU make 3.80
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44056  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								29d27bfe0d 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 43933 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.4 
........
r43933 | file | 2006-09-28 14:05:43 -0400 (Thu, 28 Sep 2006) | 2 lines
Put in missing \ns on the end of ast_logs (issue #7936  reported by wojtekka)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43934  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								d2c57c5f4f 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 43779 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.4 
................
r43779 | russell | 2006-09-27 12:55:49 -0400 (Wed, 27 Sep 2006) | 50 lines
Merged revisions 43778 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r43778 | russell | 2006-09-27 12:54:30 -0400 (Wed, 27 Sep 2006) | 42 lines
Fix a problem that occurred if a user entered a digit that matched a bridge
feature that was configured using multiple digits, and the digit that was
pressed timed out in the feature digit timeout period.  For example, if blind
transfer is configured as '##', and a user presses just '#'.  In this situation,
the call would lock up and no longer pass any frames.
(issue #7977  reported by festr, and issue #7982  reported by michaels and
 valuable input provided by mneuhauser and kuj.  Fixed by me, with testing help
 and peer review from Joshua Colp).
There are a couple of issues involved in this fix:
1) When ast_generic_bridge determines that there has been a timeout, it returned
   AST_BRIDGE_RETRY.  Then, when ast_channel_bridge gets this result, it calls
   ast_generic_bridge over again with the same timestamp for the next event.
   This results in an endless loop of nothing until the call is terminated.
   This is resolved by simply changing ast_generic_bridge to return 
   AST_BRIDGE_COMPLETE when it sees a timeout.
2) I also changed ast_channel_bridge such that if in the process of calculating
   the time until the next event, it knows a timeout has already occured, to
   immediately return AST_BRIDGE_COMPLETE instead of attempting to bridge the
   channels anyway.
3) In the process of testing the previous two changes, I ran into a problem in
   res_features where ast_channel_bridge would return because it determined
   that there was a timeout.  However, ast_bridge_call in res_features would
   then determine by its own calculation that there was still 1 ms before the
   timeout really occurs.  It would then proceed, and since the bridge broke
   out and did *not* return a frame, it interpreted this as the call was over
   and hung up the channels.
   The reason for this was because ast_bridge_call in res_features and
   ast_channel_bridge in channel.c were using different times for their
   calculations.  channel.c uses the start_time on the bridge config, which
   is the time that the feature digit was recieved.  However, res_features
   had another time, 'start', which was set right before calling 
   ast_channel_bridge.  'start' will always be slightly after start_time in the
   bridge config, and sometimes enough to round up to one ms.
   This is fixed by making ast_bridge_call use the same time as 
   ast_channel_bridge for the timeout calculation.
........
................
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43780  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								7ccaa029bc 
								
							
								 
							
						 
						
							
							
								
								These three are not defined on all platforms that we support  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43658  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								08368f00ab 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 43466 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.4 
........
r43466 | mogorman | 2006-09-21 18:50:56 -0500 (Thu, 21 Sep 2006) | 2 lines
updates for better compontent support
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43467  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								859bc68383 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 43464 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.4 
........
r43464 | tilghman | 2006-09-21 18:24:41 -0500 (Thu, 21 Sep 2006) | 2 lines
Twould help if we actually documented how the new features in res_odbc actually work. (Oops)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43465  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								e406a2478a 
								
							
								 
							
						 
						
							
							
								
								Set process limits without restarting Asterisk  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43463  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								6ae8741518 
								
							
								 
							
						 
						
							
							
								
								Lots more removal of deprecated things  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43452  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								fc88db013e 
								
							
								 
							
						 
						
							
							
								
								Remove deprecated apps and funcs  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43439  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								e8b820e743 
								
							
								 
							
						 
						
							
							
								
								Magical eightball says warnings be gone.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43369  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								aefb5c269a 
								
							
								 
							
						 
						
							
							
								
								Fix a bug in the CLI reverbification, as pointed out by ZX81 in #asterisk-dev  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43361  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								505c465a3b 
								
							
								 
							
						 
						
							
							
								
								these functions never should have been non-static or in a header file  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43313  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								32d119746c 
								
							
								 
							
						 
						
							
							
								
								move ODBC API into ast_ namespace  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43311  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								ea399862c4 
								
							
								 
							
						 
						
							
							
								
								move more API into the ast_ namespace  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43310  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								41d3e99e28 
								
							
								 
							
						 
						
							
							
								
								move ADSI functionality into ast_ namespace  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43309  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								02868b1723 
								
							
								 
							
						 
						
							
							
								
								thats odd, but just in case it happens again i want to see it.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43305  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								f6f7e134be 
								
							
								 
							
						 
						
							
							
								
								fixed timeout issue as well as some other minor issues  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43303  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								8b79aba992 
								
							
								 
							
						 
						
							
							
								
								do this fix properly :-)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43302  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								33ddb53663 
								
							
								 
							
						 
						
							
							
								
								Various updates from PCadach's chan_h323-live branch  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43294  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								fcb999c01c 
								
							
								 
							
						 
						
							
							
								
								merge qwell's CLI verbification work  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43212  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								93e161256d 
								
							
								 
							
						 
						
							
							
								
								Use a better check to ensure database connection is up (pointer to connection must exist, and connection must report status being ok) (issue  #7955  reported by sorg)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43162  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								cf22a4526c 
								
							
								 
							
						 
						
							
							
								
								Add warning about res_adsi not being optional to menuselect  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@42519  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								31cc08295c 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 42148 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r42148 | file | 2006-09-06 16:02:59 -0400 (Wed, 06 Sep 2006) | 2 lines
Don't close the second file descriptor if it's the same as the first one, as it will have already been closed elsewhere and could cause massive panic. (issue #7699  reported by bn999)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@42149  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								cf5a226c4b 
								
							
								 
							
						 
						
							
							
								
								remove leading space in Packet manager event header  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41849  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								05a695af72 
								
							
								 
							
						 
						
							
							
								
								everything that loads a config that needs a config file to run  
							
							... 
							
							
 
							
							now reports AST_MODULE_LOAD_DECLINE when loading if config file
is not there, also fixed an error in res_config_pgsql where it 
had a non static function when it should.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41633  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								c6977b9983 
								
							
								 
							
						 
						
							
							
								
								Merge in VLDTMF support with Zaptel/Core done by the ever great Darumkilla Russell Bryant and the RTP portion done by myself, Muffinlicious Joshua Colp. This has gone through so many discussions/revisions it's not funny but we finally have it!  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41507  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								ece7018515 
								
							
								 
							
						 
						
							
							
								
								add one remaining bit of functionality to the features.conf applicationmap (from Matt Nicholson in Digium Express Services)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41281  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								d12f54f90b 
								
							
								 
							
						 
						
							
							
								
								GNU make already knows how to quietly ignore non-existent files in 'include' directives  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41209  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								2a3aaa9818 
								
							
								 
							
						 
						
							
							
								
								Fix a small typo I found.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41009  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								ec7bd6614a 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 40901 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r40901 | tilghman | 2006-08-23 11:05:26 -0500 (Wed, 23 Aug 2006) | 2 lines
Revert last change - breaks retrieval of builtin variables
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40904  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								0a27d8bfe5 
								
							
								 
							
						 
						
							
							
								
								merge new_loader_completion branch, including (at least):  
							
							... 
							
							
 
							
							- restructured build tree and makefiles to eliminate recursion problems
  - support for embedded modules
  - support for static builds
  - simpler cross-compilation support
  - simpler module/loader interface (no exported symbols)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40722  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								6fec811743 
								
							
								 
							
						 
						
							
							
								
								Convert func_odbc to use the prepare_and_execute callback, which helps with a database reconnection issue (bug 7693)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40632  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								d5152177f3 
								
							
								 
							
						 
						
							
							
								
								Properly check to see if parkingnum is a number (issue  #7762  reported by robf)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40599  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								b6a99250ed 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 39935 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r39935 | russell | 2006-08-15 18:49:41 -0400 (Tue, 15 Aug 2006) | 3 lines
use pbx_builtin_getvar_helper() so that GET VARIABLE can retrieve global
variables (issue #7609 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39936  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								c5e5efb237 
								
							
								 
							
						 
						
							
							
								
								Move STD_MOD declaration to end of file as per the norm of everything else (issue  #7711  reported by Mithraen)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39514  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								524416f37b 
								
							
								 
							
						 
						
							
							
								
								Make res_snmp fit general coding style (issue  #7192  reported by Mithraen)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39512  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1ef09ebfed 
								
							
								 
							
						 
						
							
							
								
								some code clean up and catch for a act_hook being called  
							
							... 
							
							
 
							
							without a packet.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39351  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								92bd7f19f7 
								
							
								 
							
						 
						
							
							
								
								Merge team/russell/ast_verbose_threadstorage  
							
							... 
							
							
 
							
							- instead of defining a free() wrapper in a bunch of files, define it as
  ast_free() in utils.h and remove the copies from all the files.
- centralize and abstract the code used for doing thread storage. The code
  lives in threadstorage.h, with one function being implemented in utils.c.
  This new API includes generic thread storage as well as special functions
  for handling thread local dynamic length string buffers.
- update ast_inet_ntoa() to use the new threadstorage API
- update ast_state2str() to use the new threadstorage API
- update ast_cli() to use the new threadstorage API
- Modify manager_event() to use thread storage. Instead of using a buffer of
  4096 characters as the workspace for building the manager event, use a thread
  local dynamic string.  Now there is no length limitation on the length of the
  body of a manager event.
- Significantly simplify the handling of ast_verbose() ...
  - Instead of using a static char buffer and a lock to make sure only one
    thread can be using ast_verbose() at a time, use a thread local dynamic
    string as the workspace for preparing the verbose message. Instead of
    locking around the entire function, the only locking done now is when the
    message has been built and is being deliviered to the list of registered
    verbose message handlers.
  - This function was doing a strdup() on every message passed to it and
    keeping a queue of the last 200 messages in memory. This has been
    completely removed. The only place this was used was that if there were
    any messages in the verbose queue when a verbose handler was registered,
    all of the messages in the queue would be fed to it.  So, I just made sure
    that the console verbose handler and the network verbose handler (for
    remote asterisk consoles) were registered before any verbose messages.
    pbx_gtkconsole and pbx_kdeconsole will now lose a few verbose messages at
    startup, but I didn't feel the performance hit of this message queue was
    worth saving the initial verbose output for these very rarely used modules.
  - I have removed the last three arguments to the verbose handlers, leaving
    only the string itself because they aren't needed anymore. For example,
    ast_verbose had some logic for telling the verbose handler to add
    a newline if the buffer was completely full. Now that the buffer can grow
    as needed, this doesn't matter anymore.
  - remove unused function, ast_verbose_dmesg() which was to dispatch the
    message queue
  - Convert the list of verbose handlers to use the linked list macros.
- add missing newline characters to a few ast_verbose() calls
- convert the list of log channels to use the linked list macros in logger.c
- fix close_logger() to close all of the files it opened for logging
- update ast_log() to use a thread local dynamic string for its workspace
  for preparing log messages instead of a buffer of size BUFSIZ (8kB on my
  system) allocated on the stack.  The dynamic string in this case is limited
  to only growing to a maximum size of BUFSIZ.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39272  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								33f0232f07 
								
							
								 
							
						 
						
							
							
								
								This patch allows for a user to send messages and  
							
							... 
							
							
 
							
							monitor a jabber connection over manager.
patches from 7673 and 7666 with minor changes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39248  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3f115f8c31 
								
							
								 
							
						 
						
							
							
								
								Many many code cleanup changes given to me by Oej  
							
							... 
							
							
 
							
							Thanks, sorry I didn't put this in forever ago.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39229  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4d7c67fc72 
								
							
								 
							
						 
						
							
							
								
								Merge my applicationmap_fixup branch to address the issues described in this  
							
							... 
							
							
 
							
							post to the asterisk-dev mailing list:
  http://lists.digium.com/pipermail/asterisk-dev/2006-August/022174.html 
This implements full control over both which channel(s) can activate a dynamic
feature, as well as which channel to run the application on.  I also updated
the documentation on the applicationmap in features.conf.sample in hopes that
the configuration is more clear.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39109  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								2410854b3c 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 38825 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r38825 | file | 2006-08-03 15:54:02 -0400 (Thu, 03 Aug 2006) | 2 lines
Treat the file as invalid if we have no valid formats for it (issue #7643  reported by KNK)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38826  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								652d06f998 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 38686 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r38686 | kpfleming | 2006-08-01 18:07:06 -0500 (Tue, 01 Aug 2006) | 2 lines
ensure that the 'feature digit timeout' value is taken into account when deciding how long the bridge should run (this fixes a problem report where a digit press that did not invoke a feature is never passed across the bridge)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38687  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								bec319415f 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 38654 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r38654 | file | 2006-08-01 15:20:05 -0400 (Tue, 01 Aug 2006) | 2 lines
Close the stream when file based MOH stop. This won't get rid of their position in the file but it will cause the translation path to be setup again. (issue #7634  reported by asimpson)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38655  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								03356c2a4d 
								
							
								 
							
						 
						
							
							
								
								fix seg fault when the parked call that timed out was the last one in the list  
							
							... 
							
							
 
							
							of parked calls (fixes issue #7565 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38330  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a60a9b6637 
								
							
								 
							
						 
						
							
							
								
								Only unlock these if they were locked on entry  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38250  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								233aab68a6 
								
							
								 
							
						 
						
							
							
								
								add a verbose message to the AGI command, STREAM FILE, similar to the  
							
							... 
							
							
 
							
							verbose messages when using Playback, Background, or the GET DATA command
(issue #7297 , softins)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38021  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								346c291a2d 
								
							
								 
							
						 
						
							
							
								
								Remove "initialization from incompatible pointer type" warnings.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38010  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6d0742fc16 
								
							
								 
							
						 
						
							
							
								
								merge Russell's 'hold_handling' branch, finally implementing music-on-hold handling the way it was decided at AstriDevCon Europe 2006 (and the way people really want it to be)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37988  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a353387ea7 
								
							
								 
							
						 
						
							
							
								
								restore buildability  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37952  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								886a6bd6f9 
								
							
								 
							
						 
						
							
							
								
								restore buildability (bad marko!)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37950  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								457ec51f8d 
								
							
								 
							
						 
						
							
							
								
								Expand speech API so that the developer can interact with the engine more directly and use specific functions of the connector even if a generic API call is not available  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37881  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								000ba592b2 
								
							
								 
							
						 
						
							
							
								
								more Makefile cleanup and consistency stuff  
							
							... 
							
							
 
							
							don't reuse LIBS variable from top-level Makefile (oops)
build Asterisk binary after subdirs (preparing for embedded modules)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37661  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5b639e6135 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 37419 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r37419 | kpfleming | 2006-07-12 08:54:10 -0500 (Wed, 12 Jul 2006) | 2 lines
remove some more bad examples of using printf
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37433  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a0f151db99 
								
							
								 
							
						 
						
							
							
								
								eliminate a pointer signedness warning  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37289  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a10e1dad07 
								
							
								 
							
						 
						
							
							
								
								remove the unused usecount function to eliminate a compiler warning  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37288  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								748431f7b6 
								
							
								 
							
						 
						
							
							
								
								move rules file to prepare for generic rules file  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37222  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5c30f76ba3 
								
							
								 
							
						 
						
							
							
								
								solves issue with bug 7468. but with a patch that works  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37087  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f761d2f6f0 
								
							
								 
							
						 
						
							
							
								
								prepare Asterisk for new zaptel.h/tonezone.h installation locations  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37027  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ec9d4711d7 
								
							
								 
							
						 
						
							
							
								
								- Add notes about voicemail depending on res_adsi  
							
							... 
							
							
 
							
							- Remove obsolete modules from modules.conf.sample
  (make install will warn if those exist on the machine)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36979  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5a74ed4fef 
								
							
								 
							
						 
						
							
							
								
								fix up res_snmp so it builds and loads correctly  
							
							... 
							
							
 
							
							- update to current loader
- update to latest build system changes to ensure snmp/agent.o is built
  and linked
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36524  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								109737eb1c 
								
							
								 
							
						 
						
							
							
								
								Updates from transnexus to osplookup, removes res_osp  
							
							... 
							
							
 
							
							and puts all logic into the app, documentation provided now
in osp.txt.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36406  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b43f5638ef 
								
							
								 
							
						 
						
							
							
								
								Missing parenthesis  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36176  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ccc7f662d8 
								
							
								 
							
						 
						
							
							
								
								dont copy an id or a message if they dont exist.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36175  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f8311adcda 
								
							
								 
							
						 
						
							
							
								
								METERMAIDS:  
							
							... 
							
							
 
							
							-----------
- Adding devicestate providers, a new architecture to add non-channel related
  device state information, like parking lots, queues, meetmes, vending machines
  and Windows 98 reboots (lots of blinking on those lights)
- Adding provider for parking lots, so you can subscribe to the status of a
  parking lot
- Adding provider for meetme, so you can have a blinking lamp for a meetme
  ( Example: exten => edvina,hint,meetme:1234 )
- Adding support for directed parking - set the PARKINGEXTEN before you manually
  call Park() and you will be parked on that space. If it's occupied, dialplan
  execution will continue.
This work was sponsored by Voop A/S - www.voop.com
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36055  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a579371f43 
								
							
								 
							
						 
						
							
							
								
								use new (separate) dependencies file from menuselect  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35895  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e61d3d91f3 
								
							
								 
							
						 
						
							
							
								
								The Eurostar Commit! (it's amazing how much work you can get done on a 150 minute train ride from Paris to London <G>)  
							
							... 
							
							
 
							
							support the new location for zaptel.h and tonezone.h
use the dependency information output by menuselect to build Makefile rules for each module for header files and libraries
combine the common rules into a top-level Makefile.rules file
remove all (now) unnecessary stuff from subdir Makefiles
change translator API so that the newpvt() callback returns an int instead of a pointer (it no longer allocates memory)
alphabetize --with-<foo> options in configure script
enhance Net-SNMP support in configure script to provide a --with-netsnmp option
fix support for --with-pq so that if pg-config is not found when --with-pq is specified, an error will be generated
add 'optional package' usage to modules now that menuselect can output it
allow res_snmp to build by default, since the new loader changes coming soon will solve the function naming problem (and users can disable it via menuselect anyway)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35832  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								eaf0524c40 
								
							
								 
							
						 
						
							
							
								
								very minor improvement  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35649  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								8ab51d1fb1 
								
							
								 
							
						 
						
							
							
								
								delete snmp/agent.o on make clean  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35608  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								268609aa68 
								
							
								 
							
						 
						
							
							
								
								add basic autoconf support for res_snmp  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35607  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								53a56fcfe7 
								
							
								 
							
						 
						
							
							
								
								remove various commands that remove old modules since they have been there a  
							
							... 
							
							
 
							
							sufficient amount of time.  Even if they happen to be still present, the main
Makefile will spit out a huge warning telling the user that modules not
installed by that run of "make install" are present in the modules directory.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35605  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								48ae9f0d4f 
								
							
								 
							
						 
						
							
							
								
								- convert the 'uninstall' target to use separate targets to process each  
							
							... 
							
							
 
							
							subdirectory instead of a for loop
- remove the FORCE target from the main Makefile and add the couple places
  I used it to the .PHONY target.  .PHONY does the same thing and is a built-in
  more efficient way of doing it.
- add a bunch more targets to .PHONY ...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35503  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								55e8a60363 
								
							
								 
							
						 
						
							
							
								
								- specify that 'depend' is a .PHONY target  
							
							... 
							
							
 
							
							- use separate targets instead of a for loop for doing 'make depend' for
  each sub directory
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35501  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9db0520ff9 
								
							
								 
							
						 
						
							
							
								
								- specify that 'all' is a .PHONY target  
							
							... 
							
							
 
							
							- add a copyright header to the build_tools Makefile
- remove 'depend' from the 'all' target in agi/ and utils/ since it is handled
  by the main Makefile already
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35479  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c399a06450 
								
							
								 
							
						 
						
							
							
								
								add the 'clean', 'clean-depend', and 'dist-clean' targets as .PHONY targets  
							
							... 
							
							
 
							
							since they are targets that do not have resulting files and are never listed
as prerequisites to real targets.  Using .PHONY in this manner improves make
performance by never having to check for resulting files.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35415  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7876a86e96 
								
							
								 
							
						 
						
							
							
								
								- Doxygen and some formatting fixes in res_features  
							
							... 
							
							
 
							
							- Get rid of compiler warnings in chan_sip
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35210  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9f2a6516cf 
								
							
								 
							
						 
						
							
							
								
								don't blow up in the sub Makefiles if menuselect.makeopts is not present. This  
							
							... 
							
							
 
							
							is valid in some cases, such as "make clean".
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34738  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5288621ed4 
								
							
								 
							
						 
						
							
							
								
								handle ast_calloc failure and tweak some formatting to comply with coding  
							
							... 
							
							
 
							
							guidelines (issue #7341 , casper)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34667  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b6147a21b9 
								
							
								 
							
						 
						
							
							
								
								remove "depend" from the "all" targets in sub Makefiles.  The main Makefile  
							
							... 
							
							
 
							
							already calls "make depend" for each of the subdirectories
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34497  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0073f0de9e 
								
							
								 
							
						 
						
							
							
								
								Handle failure of ast_calloc when allocating interfaces in res_smdi (issue  #7344  reported by casper)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34495  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								14ebe471c5 
								
							
								 
							
						 
						
							
							
								
								ast_calloc() already reports OOM conditions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34241  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f5d54051fe 
								
							
								 
							
						 
						
							
							
								
								ast_calloc already reports out of memory conditions (issue 7343)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34240  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a483f6eafc 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 33693 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r33693 | russell | 2006-06-12 16:40:11 -0400 (Mon, 12 Jun 2006) | 2 lines
fix a place where a frame would be free'd twice
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33694  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1d8804c117 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 33615 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r33615 | tilghman | 2006-06-12 10:27:18 -0500 (Mon, 12 Jun 2006) | 4 lines
Move set priority up, because at this point in the code, stdout is no longer
the console.  If we're unable to set priority, the error goes to Asterisk as
if it were an AGI command (issue 7335).
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33616  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e3ddee7d7f 
								
							
								 
							
						 
						
							
							
								
								make latest header file changes for this file too  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33482  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b31b0be819 
								
							
								 
							
						 
						
							
							
								
								various minor portability fixes (mostly from tholo for OpenBSD)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33350  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								76fae31988 
								
							
								 
							
						 
						
							
							
								
								oops moved block without renaming a variable correctly.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33299  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								124357f300 
								
							
								 
							
						 
						
							
							
								
								convert one of my linked lists to ast_linklist  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33263  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1e530787f3 
								
							
								 
							
						 
						
							
							
								
								solves some bugs with memory allocation, and adds  
							
							... 
							
							
 
							
							a message stack.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32918  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								472c1ca282 
								
							
								 
							
						 
						
							
							
								
								simplify autoconfig include mechanism (make tholo happy he can use lint again :-)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32846  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								503f99e2e8 
								
							
								 
							
						 
						
							
							
								
								remove the need to have to re-run make after a default menuselect.makeopts  
							
							... 
							
							
 
							
							file is generated.  This allows a fresh checkout of asterisk to be built
and installed with the standard "./configure && make && make install".
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32798  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6c0155e6cb 
								
							
								 
							
						 
						
							
							
								
								fixes some issues with description loggin on presence  
							
							... 
							
							
 
							
							as well as some typos.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32675  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								835c77ccfa 
								
							
								 
							
						 
						
							
							
								
								fix a potential segfault  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32674  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1f7db8df6a 
								
							
								 
							
						 
						
							
							
								
								add missing include  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32673  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c04e4bd380 
								
							
								 
							
						 
						
							
							
								
								allow presence events to be handled before the  
							
							... 
							
							
 
							
							roster is received.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32654  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c7dbc3c166 
								
							
								 
							
						 
						
							
							
								
								fixed autoregister bug.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32634  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e856010714 
								
							
								 
							
						 
						
							
							
								
								use module names, not file names, in menuselect  
							
							... 
							
							
 
							
							work around XML parsing bug in menuselect for default sounds package
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32407  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4e9549c361 
								
							
								 
							
						 
						
							
							
								
								oops  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32046  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								24ed170273 
								
							
								 
							
						 
						
							
							
								
								solves some issues with jabberstatus app  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32040  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								006989cbe2 
								
							
								 
							
						 
						
							
							
								
								Use a dynamically sized array to store the list of files for moh "files" mode  
							
							... 
							
							
 
							
							- Instead of always allocating 64KB of memory for every MOH class, this has
   been reduced to only a single pointer per class, with more memory only
   allocatted when using "files" mode, as needed
 - Instead of imposing a length limit on the full filename, including full
   path, of 127 characters, use PATH_MAX, the maximum length that the system
   can handle
 - There is no longer a limit on the number of files than can be used for a
   single MOH class using "files" mode
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31953  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								61d295f187 
								
							
								 
							
						 
						
							
							
								
								when using moh files mode, don't look for a file past the number of files  
							
							... 
							
							
 
							
							that have been loaded, or worse, past the size of the files array
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31776  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a6d039cd37 
								
							
								 
							
						 
						
							
							
								
								add a comment where some memory usage optimization needs to be done  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31613  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								736dc15d0b 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 31555 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r31555 | kpfleming | 2006-06-01 16:46:50 -0500 (Thu, 01 Jun 2006) | 2 lines
remove pointless forcing of the channel into SLINEAR mode; the write format will be set later based on the file that is chosen to be played to the channel
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31556  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								fa339925dc 
								
							
								 
							
						 
						
							
							
								
								more minor fixes thanks Julian on pointing out  
							
							... 
							
							
 
							
							potential problems
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31469  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								073e346f4e 
								
							
								 
							
						 
						
							
							
								
								solves bug where reload deleted things it shouldnt have  
							
							... 
							
							
 
							
							and adds check into jabberstatus so it cant segfault.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31298  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								8cfb992c1e 
								
							
								 
							
						 
						
							
							
								
								adds statusmessage customization from Julian Lyndon-Smith  
							
							... 
							
							
 
							
							and fixes bug with pruneregister
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31275  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6ff6536f13 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 31194 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r31194 | russell | 2006-05-31 19:50:00 -0400 (Wed, 31 May 2006) | 3 lines
if the connection to a FastAGI server fails because of a timeout, log a more
informative log message
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31195  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6ab22f2268 
								
							
								 
							
						 
						
							
							
								
								Be gone unused res! (issue  #7238  reported by casper)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30804  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								10467be4c0 
								
							
								 
							
						 
						
							
							
								
								attended transfer use transferer context first and set who is transfering at the beginning (issue  #6752  reported by moy -- minor mods done by myself)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30548  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1c158f0ea4 
								
							
								 
							
						 
						
							
							
								
								Add the video stream for AGI function STREAM FILE (issue  #5392  reported by areski -- minor mods by me)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30547  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								26271fbd3a 
								
							
								 
							
						 
						
							
							
								
								allow setting a channel variable to disable sending SIGHUP to the AGI process  
							
							... 
							
							
 
							
							(issue #6491 , original patch by juggie, channel variable patch by corydon,
 committed patch modified to change variable name and update documentation)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30337  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								238cdb249f 
								
							
								 
							
						 
						
							
							
								
								Add the ability to retrieve the exit code of the forked AGI process.  If there  
							
							... 
							
							
 
							
							is an error executing the AGI script, or the AGI script itself returns a
non-zero value, the AGISTATUS variable will now be set to FAILURE instead of
SUCCESS.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30328  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0cccaf8408 
								
							
								 
							
						 
						
							
							
								
								- add support for setting an AGISTATUS variable that indicates successful  
							
							... 
							
							
 
							
							execution, failure, or if the channel requested hangup.
- only return -1 from the application if the application requested hangup. If
  there was just a failure in execution of the AGI, just set the status
  variable appropriately and move on in the dialplan.
(issue #7121 , original patch by Alessandro Polverini, updated patch by srt,
 committed patch is heavily modified to allow still returning -1 on hangup)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30272  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								45e83fa7c1 
								
							
								 
							
						 
						
							
							
								
								reset timeout on reconnect.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30039  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								dd45d18515 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 29973 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r29973 | kpfleming | 2006-05-24 11:59:20 -0500 (Wed, 24 May 2006) | 2 lines
support video recording via AGI 'RECORD FILE' command (issue #7068 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29988  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f297f2ec29 
								
							
								 
							
						 
						
							
							
								
								get rid of that transport sillyness  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29848  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d419d41c2e 
								
							
								 
							
						 
						
							
							
								
								hmm still need a way to get rid of connections  
							
							... 
							
							
 
							
							later on.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29847  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								600d37873d 
								
							
								 
							
						 
						
							
							
								
								fixes bug where server goes away.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29825  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								45107ed763 
								
							
								 
							
						 
						
							
							
								
								allows for configurable answer timeout on attended transfer  
							
							... 
							
							
 
							
							patch 0006763 with minor changes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29766  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5d51260c36 
								
							
								 
							
						 
						
							
							
								
								finish cleaning up some more stuff before russell  
							
							... 
							
							
 
							
							gets a chance to.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29708  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a20db7dde6 
								
							
								 
							
						 
						
							
							
								
								remove another excess "debug" message  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29707  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								99fe70da00 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 29696 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r29696 | bweschke | 2006-05-23 11:58:24 -0400 (Tue, 23 May 2006) | 3 lines
 Fix a potential leak and correct (hopefully) a segfault under certain conditions. #6784  (vovan and perry testing)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29706  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								cb25b874cb 
								
							
								 
							
						 
						
							
							
								
								remove an unnecessary error message that is really an old debug message  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29704  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7aa1a77e75 
								
							
								 
							
						 
						
							
							
								
								asterisk-xmpp merge in  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29553  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								64b94dad80 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 29512 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r29512 | file | 2006-05-22 17:15:04 -0300 (Mon, 22 May 2006) | 2 lines
Use the correct language when playing the transfer sound (issue #7109  reported by casper)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29514  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5235890be4 
								
							
								 
							
						 
						
							
							
								
								This is part 2/2 of the patches for  #7090 . Adds one-step call parking to /trunk via builtin functions and 'k' 'K' application options added to app_dial. This also  resolves   #6340 .  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29467  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4733732b61 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 29196 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r29196 | bweschke | 2006-05-21 10:16:59 -0500 (Sun, 21 May 2006) | 3 lines
 When an application that is executed via applicationmap and exits non-zero, make sure that we pass through the correct return value from the application to make sure a segfault doesn't occur by a bridge trying to continue when it should not. Also, when executing applications via applicationmap, make sure that the application is executed against the channel whose DTMF caused it to be fired off in the first place. (part 1/2 of #7090  - this is the only fix that will be applied to both 1.2 and /trunk) acunningham and blitzrage on testing...
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29197  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								53df01c9cc 
								
							
								 
							
						 
						
							
							
								
								when displaying the list of registered music on hold classes, only show  
							
							... 
							
							
 
							
							the format if the mode is not "files", because the field has no meaning
in that case
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28445  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								eeb01cda95 
								
							
								 
							
						 
						
							
							
								
								revert bogus change  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28395  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e274a70d52 
								
							
								 
							
						 
						
							
							
								
								Add missing argument to ast_carefulwrite  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28393  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f9c578a8a0 
								
							
								 
							
						 
						
							
							
								
								- The recent change to linklists.h broke the build on linux for some reason.  
							
							... 
							
							
 
							
							So, I have removed all of the uses of AST_LIST_HEAD_INIT and replaced them
   with the equivalent static initializations.
 - On passing, fix a memory leak in the unload_module() function of chan_agent.
   The agents list mutex was never destroyed, and the elements in the agents
   list were not freed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26990  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6ea26d0bee 
								
							
								 
							
						 
						
							
							
								
								use the channel lock wrappers (issue  #7128 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26526  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								04ecb29d03 
								
							
								 
							
						 
						
							
							
								
								remove almost all of the checks of the result from ast_strdupa() or alloca().  
							
							... 
							
							
 
							
							As it turns out, all of these checks were useless, because alloca will never
return NULL.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26451  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ed3ffb4b46 
								
							
								 
							
						 
						
							
							
								
								various doxygen fixes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26170  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								61aaf4dd14 
								
							
								 
							
						 
						
							
							
								
								remove a check of the result of ast_mutex_lock  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25891  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3fbd46099e 
								
							
								 
							
						 
						
							
							
								
								Incorrect log statement when playing transfer sounds (issue  #7008  reported and fixed by nathan)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25444  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4fe3960478 
								
							
								 
							
						 
						
							
							
								
								move ast_carefulwrite from manager.c to utils.c so that cli.c and  
							
							... 
							
							
 
							
							res_agi.c no longer depend on manager.h (issue #6397 , casper)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25026  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								282eb80ed4 
								
							
								 
							
						 
						
							
							
								
								Correct call parking behavior when there is no courtesytone specified.  #6306  (murf)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24605  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								aeed5ca05d 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 24019 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r24019 | tilghman | 2006-05-01 15:44:24 -0500 (Mon, 01 May 2006) | 2 lines
Bug 6864 - drop realtime priority on ALL external processes
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24053  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f3eaae4593 
								
							
								 
							
						 
						
							
							
								
								remove macro defined that is no longer needed  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23737  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								8085f4e14b 
								
							
								 
							
						 
						
							
							
								
								a bunch of conversion to ast_channel_*lock (issue  #7058 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23355  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								00f9884604 
								
							
								 
							
						 
						
							
							
								
								- convert lists to use linked list macros  
							
							... 
							
							
 
							
							- instead of allocating a frame on the stack every time the music on hold
  generator is called, put a frame in the mohdata structure.  Also, initialize
  the parts of the frame that will never change when the mohdata struct is
  allocatted and only change the necessary parts in the generator function.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23334  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								711f35fdc3 
								
							
								 
							
						 
						
							
							
								
								- don't create duplicate log messages  
							
							... 
							
							
 
							
							- note when the data part of the tech/data pair is missing not only when using
  the app version, but the exten version as well
- instead of logging syntax errors, just output them to the CLI
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23284  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								532e552c1f 
								
							
								 
							
						 
						
							
							
								
								add reload() (bug 9981)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23273  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								574e14cbea 
								
							
								 
							
						 
						
							
							
								
								Thanks to the fine work of Russell Bryant and Dancho Lazarov, we now have autoconf and menuselect tools for Asterisk!  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22267  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7e0d402e88 
								
							
								 
							
						 
						
							
							
								
								move wait_and_stream to ast_wait_and_stream() because equivalent  
							
							... 
							
							
 
							
							code is replicated in way too many places not to have a global
function for that.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22075  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								11551079cf 
								
							
								 
							
						 
						
							
							
								
								more strncpy/ast_copy_string replacement.  
							
							... 
							
							
 
							
							On passing, simplify code by using strsep() as appropriate
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22045  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								66c4068149 
								
							
								 
							
						 
						
							
							
								
								more strncpy/ast_copy_string replacement  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22044  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								23c6d5eff8 
								
							
								 
							
						 
						
							
							
								
								comment a possible memory leak  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21988  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6553aa3a36 
								
							
								 
							
						 
						
							
							
								
								merge some common code into a function  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21986  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7ecc442d77 
								
							
								 
							
						 
						
							
							
								
								more NULL "" equivalence in cid fields.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21835  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4cef4ef720 
								
							
								 
							
						 
						
							
							
								
								more NULL / "" equivalence for CID fields.  
							
							... 
							
							
 
							
							Mark an inconsistency in empty string handling.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21819  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								501ac5189c 
								
							
								 
							
						 
						
							
							
								
								update res_odbc to support pooled connections  
							
							... 
							
							
 
							
							(from tilghman's developer branch, res_odbc_rewrite)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21181  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								51743a4aea 
								
							
								 
							
						 
						
							
							
								
								simplify the flow of builtin_atxfer().  
							
							... 
							
							
 
							
							There is still a lot of similarity with builtin_blindtransfer()
which should be removed by definining functions for the common
pieces of code (eg in the first part).
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21097  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5bcdea5102 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 20966 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r20966 | tilghman | 2006-04-17 12:00:16 -0500 (Mon, 17 Apr 2006) | 2 lines
Bug 6544 - when we remove a music class, the thread servicing it should die
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21002  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								39b530f4d6 
								
							
								 
							
						 
						
							
							
								
								- Doxygen formatting  
							
							... 
							
							
 
							
							Please place a Doxygen todo marker before things that needs to be checked up later
  by someone - it's like /*! \todo We really need to implement this in C++ */
- option_debug checking before logging to DEBUG channel
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20790  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b7e36b50cc 
								
							
								 
							
						 
						
							
							
								
								preparation for reduction of the nesting of a large function  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20733  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7cb4a9df38 
								
							
								 
							
						 
						
							
							
								
								more usages of stream_and_wait  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20707  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								db107f93e1 
								
							
								 
							
						 
						
							
							
								
								more usages of function 'finishup()'  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20705  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								2c7b77814c 
								
							
								 
							
						 
						
							
							
								
								one more instance of stream_and_wait, and remove an extra  
							
							... 
							
							
 
							
							'error = 1' line put in by miustake
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20693  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6e6315099c 
								
							
								 
							
						 
						
							
							
								
								more replaceemnt of dup code with functions.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20678  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ed8f2e43f6 
								
							
								 
							
						 
						
							
							
								
								localize several variables, and simplify the last part of park_exec()  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20653  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3e20f8d75d 
								
							
								 
							
						 
						
							
							
								
								more formatting cleanup including removal of a useless check  
							
							... 
							
							
 
							
							for f == NULL
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20652  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								09a1511672 
								
							
								 
							
						 
						
							
							
								
								rename a variable same as used in a very similar function,  
							
							... 
							
							
 
							
							to reduce code differences.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20627  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4ca8c0fc8d 
								
							
								 
							
						 
						
							
							
								
								s/pu->chan/chan in a few places;  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20626  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								36ea51ecd7 
								
							
								 
							
						 
						
							
							
								
								put some common code into functions (still more instances to be replaced)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20625  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								70109abc39 
								
							
								 
							
						 
						
							
							
								
								properly reindent a large block.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20624  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e304a986fd 
								
							
								 
							
						 
						
							
							
								
								more readability fixes - localize some variables and invert  
							
							... 
							
							
 
							
							a condition in an 'if' statement to reduce the nesting depth.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20623  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d29f8a677e 
								
							
								 
							
						 
						
							
							
								
								introduce a function to set context, extension and priority  
							
							... 
							
							
 
							
							replacing some common blocks of code (there are still a few
instances where it can be used)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20598  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								81ed862e67 
								
							
								 
							
						 
						
							
							
								
								minor readability fixes in preparation for more work on this file:  
							
							... 
							
							
 
							
							- replace nested 'if' with '&&'
- fix indentation
- annotate the end brace of some huge block
- remove useless parentheses
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20597  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4657dc770c 
								
							
								 
							
						 
						
							
							
								
								We are shaking up trunk tonight! allow data dir to be specified (issue  #6967  reported by tzafrir)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20330  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e42087f5e3 
								
							
								 
							
						 
						
							
							
								
								- normalize for() loops to navigate through variables,  
							
							... 
							
							
 
							
							removing replicated var = var->next;
- remove a potential infinite loop and document the problem
- remove useless checks and document why
- mark XXX a possible bug (to be investigated)
- use ast_strlen_zero() instead of expanding it inline
- fix indentation in one place   
- replace a nested 'if' with '&&'
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20223  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d043954dc1 
								
							
								 
							
						 
						
							
							
								
								- remove some unnecessary casts and braces;  
							
							... 
							
							
 
							
							- add braces around a nested 'if'
- use S_OR and '?' to remove some duplicated function calls;
- replace nested 'if' with &&
- move out a common term in a sequence of 'if'
- add a comment on a potentially dangerous string manipulation
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20196  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								62712ea668 
								
							
								 
							
						 
						
							
							
								
								constification and code simplifications  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20165  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6d574f36ca 
								
							
								 
							
						 
						
							
							
								
								partial fix of the module API to use the new method.  
							
							... 
							
							
 
							
							Still not complete as we need to take care of the usecount stuff.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20104  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								8d98d44e82 
								
							
								 
							
						 
						
							
							
								
								fix another svn merge bug  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20076  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e43bc6634d 
								
							
								 
							
						 
						
							
							
								
								This rather large commit changes the way modules are loaded.  
							
							... 
							
							
 
							
							As partly documented in loader.c and include/asterisk/module.h,
modules are now expected to return all of their methods and flags
into a structure 'mod_data', and are normally loaded with RTLD_NOW
| RTLD_LOCAL, so symbols are resolved immediately and conflicts
should be less likely.  Only in a small number of cases (res_*,
typically) modules are loaded RTLD_GLOBAL, so they can export
symbols.
 
The core of the change is only the two files loader.c and
include/asterisk/module.h, all the rest is simply adaptation of the
existing modules to the new API, a rather mechanical (but believe
me, time and finger-consuming!) process whose detail you can figure
out by svn diff'ing any single module.
Expect some minor compilation issue after this change, please
report it on mantis http://bugs.digium.com/view.php?id=6968 
so we collect all the feedback in one place.
I am just sorry that this change missed SVN version number 20000!
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20003  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5e43f18529 
								
							
								 
							
						 
						
							
							
								
								Updates to speech recognition API and dialplan utilities. Moved to using dialplan functions, and some other misc things.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19645  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7507309732 
								
							
								 
							
						 
						
							
							
								
								normalize code in preparation to module changes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19189  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e4811a8248 
								
							
								 
							
						 
						
							
							
								
								Presenting a revised data stores and oh my, a generic speech recognition API! I wonder what we can do with this now...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18979  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								70e407c5be 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 18866 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r18866 | bweschke | 2006-04-10 12:29:51 -0500 (Mon, 10 Apr 2006) | 2 lines
 Don't say that we can pass an 'exten' argument in the documentation of Park() when we really cannot. #6902  (opsys)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18867  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f7c5aee2ad 
								
							
								 
							
						 
						
							
							
								
								remove a couple more unnecessary "out of memory" error messages  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18723  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7878538953 
								
							
								 
							
						 
						
							
							
								
								use ast_*alloc and don't create duplicated error messages.  
							
							... 
							
							
 
							
							... as stated in the coding guidelines.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18722  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9a5c7c75a3 
								
							
								 
							
						 
						
							
							
								
								Instead of using strncpy, use ast_copy_string.  Also, in the case of copying a  
							
							... 
							
							
 
							
							constant string into a buffer that we know is big enough, don't use a length
limited copy at all, use strcpy.
... as stated in the coding guidelines.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18721  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d13bc3fc83 
								
							
								 
							
						 
						
							
							
								
								run the module through indent to fix the formatting issues that violate the  
							
							... 
							
							
 
							
							coding guidelines
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18704  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d203e9c6c0 
								
							
								 
							
						 
						
							
							
								
								add back braces that were removed in a recent commit that leave a bunch of  
							
							... 
							
							
 
							
							nested statements in a block without branches, which is a violation of the
coding guidelines.
As a matter of fact, this module violates the coding guidelines in multiple
ways that including formatting and code issues.  In my opinion, this module
should not have been merged into the trunk in this form.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18693  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								70f18e5f31 
								
							
								 
							
						 
						
							
							
								
								Issue 6917 - some cleanups for res_config_pgsql.c (mithraen)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18607  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								699f55071b 
								
							
								 
							
						 
						
							
							
								
								a few cleanups from the last commit  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18572  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f10f427d49 
								
							
								 
							
						 
						
							
							
								
								since the module API is changing, it's a good time to const-ify the description() and key() return values  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18552  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								af2609dfbe 
								
							
								 
							
						 
						
							
							
								
								fix bug in smdi config parsing (issue  #6908 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18493  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7089dc1341 
								
							
								 
							
						 
						
							
							
								
								Issue  #6899  - remove OSP support code from chan_sip.c and app_dial.c  
							
							... 
							
							
 
							
							- implement all functions through internal APIs in res_osp.c and app_osplookup.c
(homesick)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18369  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c3249e2cb4 
								
							
								 
							
						 
						
							
							
								
								normalize repeated instances of code as follows:  
							
							... 
							
							
 
							
							-       if (res >= 0)
-               return RESULT_SUCCESS;
-       else
-               return RESULT_FAILURE;
+       return (res >= 0) ? RESULT_SUCCESS : RESULT_FAILURE;
 
(we should probably create a macro for this,
#define	RET(r) ((r) >= 0) ? RESULT_SUCCESS : RESULT_FAILURE)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17899  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e5d48fd45f 
								
							
								 
							
						 
						
							
							
								
								use the new module interface for this module, but make it  
							
							... 
							
							
 
							
							of type MOD_0 as it exports symbols so it should be loaded as RTLD_GLOBAL.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17860  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d75fed39ca 
								
							
								 
							
						 
						
							
							
								
								Issue  #6893  - Compiler warnings for PostgreSQL ARA driver  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17740  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1001cc0656 
								
							
								 
							
						 
						
							
							
								
								Unbreak res/Makefile (issue  #6891  as reported by casper)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17661  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ef6b50b706 
								
							
								 
							
						 
						
							
							
								
								Issue  #5637  - Realtime driver for PostgreSQL (mguesdon)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17628  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								756c7cbb12 
								
							
								 
							
						 
						
							
							
								
								Bug 6873 - Finish moving from the non-threadsafe (and poor randomness) rand() to threadsafe ast_random()  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17627  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6c232811c0 
								
							
								 
							
						 
						
							
							
								
								as discussed with Mark a few weeks ago, the 'newstack' argument  
							
							... 
							
							
 
							
							in pbx_exec is always 1 so it can be removed.
This change also takes away ast_exec_extension(), and lets all
switch functions (exists, canmatch, exec, matchmore) all use the same
prototype, which makes the code a bit cleaner.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16558  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								bf7f1ec0f8 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 16534 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r16534 | file | 2006-03-30 13:55:28 -0400 (Thu, 30 Mar 2006) | 2 lines
Do not exceed the array size for maximum allowed moh files. (issue #6842 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16535  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								48864ab877 
								
							
								 
							
						 
						
							
							
								
								do not export the tzlock and the list head, and introduce a new method,  
							
							... 
							
							
 
							
							ast_walk_indications(), to walk through the list of indications.
The new method returns an unlocked record, which is no different from the
behaviour of other existing methods in indications.c
(i.e. they all need to be fixed, with refcounts or some similar
method).
Note that ast_walk_indications() uses the pointer argument only as a
search key, so its implementation is completely safe.
In turn, this change allows the removal of AST_MUTEX_DEFINE_EXPORTED.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16532  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								dfc9952986 
								
							
								 
							
						 
						
							
							
								
								Set default value of adsipark (import from 1.2)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16347  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								fb75d34e70 
								
							
								 
							
						 
						
							
							
								
								use ast_cli_complete() to largely simplify the command completion code.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15852  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								2326d0d499 
								
							
								 
							
						 
						
							
							
								
								Bring in the new loader code as described in mantis  #4377  
							
							... 
							
							
 
							
							and updated to today's version.
The core of the patch is only two files, loader.c
and include/asterisk/module.h, with the other files
touched only to adapt non-standard usages of the
reference counts and localuser lists.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15784  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0159823ede 
								
							
								 
							
						 
						
							
							
								
								Use the standard macros to manipulate usecount.  
							
							... 
							
							
 
							
							This is in preparation to the import of the new loader.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15550  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a5ece3388a 
								
							
								 
							
						 
						
							
							
								
								Janitor work converting !ast_strlen_zero(a)?a:b  
							
							... 
							
							
 
							
							to S_OR functions. from bug note 6805 with minor
modifications.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15283  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9164eac21a 
								
							
								 
							
						 
						
							
							
								
								Add micro-http server and abstract manager interface, make snmp not die  
							
							... 
							
							
 
							
							on reload.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14953  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b0ac62573a 
								
							
								 
							
						 
						
							
							
								
								revert loader changes that have clearly not undergone adequate testing before commit  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14952  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								bdd24455b4 
								
							
								 
							
						 
						
							
							
								
								Bug 4377 - Round 2 of the loader updates  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14886  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								539f8a6502 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 14523 via svnmerge from  
							
							... 
							
							
 
							
							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: https://origsvn.digium.com/svn/asterisk/trunk@14525  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d56674b341 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 13961 via svnmerge from  
							
							... 
							
							
 
							
							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: https://origsvn.digium.com/svn/asterisk/trunk@13962  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9d2f8b284d 
								
							
								 
							
						 
						
							
							
								
								add a CLI command that allows conversion of files to other formats using  
							
							... 
							
							
 
							
							the Asterisk file format and codec translation modules (issue #6062 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12962  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b4a0e2a8bb 
								
							
								 
							
						 
						
							
							
								
								- Formatting fix in musiconhold  
							
							... 
							
							
 
							
							- One extra doxygen comment in res_features
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12842  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								34f64d0891 
								
							
								 
							
						 
						
							
							
								
								Bug 6304 - Add Park command to the manager interface  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12163  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9c35741e5f 
								
							
								 
							
						 
						
							
							
								
								Issue  #6628  - Disable res_snmp on incompatible platforms until  
							
							... 
							
							
 
							
							we have a resolution for the conflict. (Corydon's patch)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12011  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1bff19f219 
								
							
								 
							
						 
						
							
							
								
								Some days... Sorry.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11890  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								13a3c7299a 
								
							
								 
							
						 
						
							
							
								
								Oops  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11889  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								30a972341a 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 11561 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r11561 | russell | 2006-03-02 14:05:40 -0500 (Thu, 02 Mar 2006) | 2 lines
fix inaccurate ack message to ChangeMonitor action (issue #6630 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11562  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c6f691fbcc 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 11503 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r11503 | tilghman | 2006-03-01 11:41:52 -0600 (Wed, 01 Mar 2006) | 2 lines
Bug 6615 - Fix 64bit conversion errors by using a long int
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11504  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0e611cb4b4 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 11382 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r11382 | russell | 2006-02-28 13:31:04 -0500 (Tue, 28 Feb 2006) | 2 lines
add a missing newline in the agi app description (thanks wunderkin!)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11383  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								03e2e423d5 
								
							
								 
							
						 
						
							
							
								
								Fix the make file *again*  
							
							... 
							
							
 
							
							svsvn commit --This line, and those below, will be ignored--
M    res/Makefile
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11213  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3a1c0b9e5c 
								
							
								 
							
						 
						
							
							
								
								Fix snmp build  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11212  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6a86c7c5c9 
								
							
								 
							
						 
						
							
							
								
								Add SNMP support (bug  #6439 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11193  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								acfc219733 
								
							
								 
							
						 
						
							
							
								
								Reverting revision 10998 that was accidentaly committed to trunk. My apologies.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10989  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								dd5222fd30 
								
							
								 
							
						 
						
							
							
								
								Update to trunk  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10988  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								302c943001 
								
							
								 
							
						 
						
							
							
								
								add 'consumed' argument to ast_get_time_t, so callers can know how many characters were used in the parser  
							
							... 
							
							
 
							
							update pbx_dundi to use ast_get_time_t
eliminate some compiler warnings
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10871  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6204abdae2 
								
							
								 
							
						 
						
							
							
								
								merge rizzo's patch to make compiler warnings stop the build, and fix a bunch of warnings found  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10805  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								938f7ddc0f 
								
							
								 
							
						 
						
							
							
								
								remove -lssl for asterisk, and add it for res_osp (issue  #6496 , different patch)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10323  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a0d438fb6c 
								
							
								 
							
						 
						
							
							
								
								remove the uses of the deprecated STANDARD_LOCAL_USER  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10241  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e6ca0f1fab 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 10021,10108 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r10108 | kpfleming | 2006-02-14 18:36:57 -0600 (Tue, 14 Feb 2006) | 2 lines
ensure that FastAGI launcher can handle system call interruption (issue #6449 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10109  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4662d58b01 
								
							
								 
							
						 
						
							
							
								
								add API function for parsing strings to time_t (issue  #6320 , with mods)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10105  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								59990fc904 
								
							
								 
							
						 
						
							
							
								
								Fix build issues...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9988  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e7c198453d 
								
							
								 
							
						 
						
							
							
								
								ensure that dependencies are rebuilt after 'make update' so that builds don't break when files are removed/renamed  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9691  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								96bf384e7d 
								
							
								 
							
						 
						
							
							
								
								major dialplan functions update  
							
							... 
							
							
 
							
							deprecate LANGUAGE() and MUSICCLASS(), in favor of CHANNEL()
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9674  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								95151cead2 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 9581 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r9581 | russell | 2006-02-11 13:15:00 -0500 (Sat, 11 Feb 2006) | 2 lines
now that CDR is a loadable module, don't depend on it elsewhere (issue #6460 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9582  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6aa6819c41 
								
							
								 
							
						 
						
							
							
								
								use auto-build for apps, simplify variable setting  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9564  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								52c23802d6 
								
							
								 
							
						 
						
							
							
								
								use auto-build for res modules too  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9552  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e42c6c4f9e 
								
							
								 
							
						 
						
							
							
								
								set standard properties on all non-binary files  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9549  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7dc0bdf35b 
								
							
								 
							
						 
						
							
							
								
								Fix SMDI to not blow up asterisk when there's no config file.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9506  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								845a5dc75d 
								
							
								 
							
						 
						
							
							
								
								one more copyright/file header and version string support  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9452  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7b2988821a 
								
							
								 
							
						 
						
							
							
								
								clean up SMDI support commit:  
							
							... 
							
							
 
							
							copyright header format and dates
code formatting and guidelines conformance
use of timeval wrapper functions
use of memory allocation wrappers
propery unref created interface objects during config load
document new variable set by chan_zap in doc/channelvariables.txt
remove useless 'extern' on function prototypes and definitions
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9451  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								af07dc8883 
								
							
								 
							
						 
						
							
							
								
								Add smdi support for asterisk (see doc/smdi.txt for config info) ( #5945 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9423  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								54135bacbd 
								
							
								 
							
						 
						
							
							
								
								Fix for very unlikely memory leak in res_odbc  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9071  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a45394d3e9 
								
							
								 
							
						 
						
							
							
								
								Issue  #6383  - Crash on CLI originate with missing channel argument  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9065  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a16ae226b6 
								
							
								 
							
						 
						
							
							
								
								use string fields for some stuff in ast_channel  
							
							... 
							
							
 
							
							const-ify some more APIs
remove 'type' field from ast_channel, in favor of the one in the channel's tech structure
allow string field module users to specify the 'chunk size' for pool allocations
update chan_alsa to be compatible with recent const-ification patches
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9060  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f246b9fc64 
								
							
								 
							
						 
						
							
							
								
								reports why an agi script errors out on opening  
							
							... 
							
							
 
							
							file
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9059  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7d03c33e0a 
								
							
								 
							
						 
						
							
							
								
								Allows for user to uninstall asterisk binaries  
							
							... 
							
							
 
							
							bug 6177
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9052  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								cebef08271 
								
							
								 
							
						 
						
							
							
								
								remove some more redundant flags  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8779  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7df4257dbb 
								
							
								 
							
						 
						
							
							
								
								eliminate some compiler warnings  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8443  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								efae38a82d 
								
							
								 
							
						 
						
							
							
								
								- conversions to allocation wrappers  
							
							... 
							
							
 
							
							- replace malloc/memset with ast_calloc
- replace malloc/ast_copy_string with ast_strdup
(based on patch from issue #6299 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8410  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0f2a9df6aa 
								
							
								 
							
						 
						
							
							
								
								Bug 4872 - Make Asterisk paths available to AGIs via environmental variables  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8372  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								45c8956e0f 
								
							
								 
							
						 
						
							
							
								
								Doxygen fixes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8299  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6f71e1178e 
								
							
								 
							
						 
						
							
							
								
								constify arguments in more places where strings should not be modified (issue  #6286 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8203  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c814734307 
								
							
								 
							
						 
						
							
							
								
								allows for use of the originate function from  
							
							... 
							
							
 
							
							the cli patch 5847
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8186  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								065a368463 
								
							
								 
							
						 
						
							
							
								
								remove some more deprecated (pre-1.2) stuff  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8157  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								540175d9c7 
								
							
								 
							
						 
						
							
							
								
								Check to see if arg is NULL before passing ( #6094 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8133  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								06f2040e6f 
								
							
								 
							
						 
						
							
							
								
								added feature for pausing and unpausing the  
							
							... 
							
							
 
							
							monitor app from manager and in the call through
features.conf bug 5395 for the patch
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8070  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								725155b854 
								
							
								 
							
						 
						
							
							
								
								Doxygen update  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7875  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								353e5f1dc9 
								
							
								 
							
						 
						
							
							
								
								added small feature from bug 5682 with one typo fix.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7865  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a0ba6e7084 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 7823 via svnmerge from  
							
							... 
							
							
 
							
							/branches/1.2
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7824  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								80dd03e865 
								
							
								 
							
						 
						
							
							
								
								Fix copyright for touched file  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7811  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								223c0c303a 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 7795 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r7795 | oej | 2006-01-04 22:46:40 +0100 (Wed, 04 Jan 2006) | 2 lines
Issue #5980 : Removing extra CR+LF in manager events - needs port to trunk
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7796  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4661015664 
								
							
								 
							
						 
						
							
							
								
								Issue  #5952 : Add destination protocol information to res_osp (homesick)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7779  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a725468381 
								
							
								 
							
						 
						
							
							
								
								update doxygen docs to specify authors  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7682  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ef1ce7aec9 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 7634 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r7634 | russell | 2005-12-26 13:19:12 -0500 (Mon, 26 Dec 2005) | 2 lines
cast time_t to an int in printf/scanf (issue #5635 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7635  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								f49974f314 
								
							
								 
							
						 
						
							
							
								
								add a header to indicate who the call was parked by to the ParkedCall manager  
							
							... 
							
							
 
							
							events generated when parking status is requested.  This header was already
in the events that are generated when the call is first parked. (issue #5883 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7569  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0da13c21b4 
								
							
								 
							
						 
						
							
							
								
								- move the string join() function to utils.c since it is used in both cli.c and res_agi.c  
							
							... 
							
							
 
							
							- reimplement ast_join to be of linear effieciency instead of quadratic
- remove some useless checks for "if (e)"
- reorder checks for strings starting with '_' to avoid a useless call to ast_join()
- check array bounds when parsing arguments to AGI
(issue #5868 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7556  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								97c8d0dbfc 
								
							
								 
							
						 
						
							
							
								
								Allow retrieval of generated filename from one touch monitor feature.  
							
							... 
							
							
 
							
							Adds new variable TOUCH_MONITOR_OUTPUT to both legs on completion.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7392  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ec05153ac4 
								
							
								 
							
						 
						
							
							
								
								convert most of the option_*'s to a single ast_flags structure. Also, fix some  
							
							... 
							
							
 
							
							formatting, remove some unnecessary casts, and other little code cleanups.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7331  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								870f98f02d 
								
							
								 
							
						 
						
							
							
								
								Bug 5858 - Make the chanvars.c functions return a 'const char *'  
							
							... 
							
							
 
							
							This should prevent us from unintentionally changing variable
values when they're returned from pbx_builtin_getvar_helper.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7304  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								2c65582b66 
								
							
								 
							
						 
						
							
							
								
								remove extraneous svn:executable properties  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7221  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c14588af86 
								
							
								 
							
						 
						
							
							
								
								remove remaining .cvsignore files  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7220  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								fb418aa2e0 
								
							
								 
							
						 
						
							
							
								
								issue  #5826  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7188  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c347d8fee3 
								
							
								 
							
						 
						
							
							
								
								issue  #5803  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7137  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6d0b8522d0 
								
							
								 
							
						 
						
							
							
								
								small improvement :-)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7121  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								544a2ecbd3 
								
							
								 
							
						 
						
							
							
								
								issue  #5766  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7116  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3fbcf6e3d0 
								
							
								 
							
						 
						
							
							
								
								fix bsd compile issue (bug  #5731 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7094  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								608d63ac54 
								
							
								 
							
						 
						
							
							
								
								issue  #5703  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7054  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a87d3f5c19 
								
							
								 
							
						 
						
							
							
								
								issue  #5563  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7040  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								33c15f19fe 
								
							
								 
							
						 
						
							
							
								
								issue  #5601  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7035  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7b2e24777f 
								
							
								 
							
						 
						
							
							
								
								issue  #5650  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7030  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								987b87662c 
								
							
								 
							
						 
						
							
							
								
								make app_queue 1.2 jump compliant (issue  #5580 )  
							
							... 
							
							
 
							
							add missing includes of stdio.h
remove some unused and duplicate headers
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7026  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ebf04fc570 
								
							
								 
							
						 
						
							
							
								
								more header include simplification  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7023  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								a0a9769616 
								
							
								 
							
						 
						
							
							
								
								issue  #5648  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7011  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								145daf44d8 
								
							
								 
							
						 
						
							
							
								
								issue  #5634  and a little ChangeLog cleanup  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7003  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7d4a5abb1d 
								
							
								 
							
						 
						
							
							
								
								Convert some built-in applications to use new args parsing macros.  
							
							... 
							
							
 
							
							Change ast_cdr_reset to take a pointer to an ast_flags structure instead of an integer for flags.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6987  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								980887f8eb 
								
							
								 
							
						 
						
							
							
								
								minor cleanup  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6956  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								8925c3834b 
								
							
								 
							
						 
						
							
							
								
								issue  #5589  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6954  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7ffb604a2f 
								
							
								 
							
						 
						
							
							
								
								issue  #4678  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6936  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ddaed942ee 
								
							
								 
							
						 
						
							
							
								
								issue  #5499  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6931  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								551ac9af04 
								
							
								 
							
						 
						
							
							
								
								don't use 'rowcount' after SELECT statements, since the ODBC API does not say it is allowed (issue  #5083 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6904  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d6a963c476 
								
							
								 
							
						 
						
							
							
								
								Do not look for libosp since that name is not used anymore and conflicts with opensp (bug  #5542 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6891  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								80fb221f10 
								
							
								 
							
						 
						
							
							
								
								find OSP toolkit library properly  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6887  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3332a8acd1 
								
							
								 
							
						 
						
							
							
								
								clean up a lot of doxygen errors and warnings (issue  #5522 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6865  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3453e3efa5 
								
							
								 
							
						 
						
							
							
								
								Doxygen documentation update from oej (issue  #5505 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6847  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e5afdbbe16 
								
							
								 
							
						 
						
							
							
								
								Fix res_musiconhold lock  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6831  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1ceb04cfb7 
								
							
								 
							
						 
						
							
							
								
								More utility cleanups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6798  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4803298fe8 
								
							
								 
							
						 
						
							
							
								
								Make crypto loading optional  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6797  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ba7386ebed 
								
							
								 
							
						 
						
							
							
								
								ensure that parking context/extension (and other settings) are properly updated on reload (issue  #5401 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6780  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								6fea13619e 
								
							
								 
							
						 
						
							
							
								
								fix typo in function name (issue  #5437 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6758  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								b7c31babb0 
								
							
								 
							
						 
						
							
							
								
								support call duration limits on inbound OSP calls (issue  #5346 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6721  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								0c886c21c2 
								
							
								 
							
						 
						
							
							
								
								truncate last 200ms of DTMF-terminated recording to eliminate inband DTMF (issue  #5383 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6717  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ea215f5b7d 
								
							
								 
							
						 
						
							
							
								
								Remove possibility of manager deadlocks from manager actions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6687  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5599da9581 
								
							
								 
							
						 
						
							
							
								
								support new version of OSP toolkit (issue  #5168 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6653  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								e84273f392 
								
							
								 
							
						 
						
							
							
								
								use API call for setting call time limit (issue  #5227 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6599  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								5da915dcfd 
								
							
								 
							
						 
						
							
							
								
								update MANY more files with proper copyright/license info (thanks Ian!)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6596  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								7b0c1cb275 
								
							
								 
							
						 
						
							
							
								
								add token format specification support (issue  #5199 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6580  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9a4c8f8c9c 
								
							
								 
							
						 
						
							
							
								
								enable DTMF monitoring when DYNAMIC_FEATURES are specified for a brige (issue  #5153 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6541  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								1e854ea773 
								
							
								 
							
						 
						
							
							
								
								remove useless buffer initializations (issue  #5134 )  
							
							... 
							
							
 
							
							convert pbx_dundi to use ast_copy_string) (issue #5134 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6540  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								40c5fa88a4 
								
							
								 
							
						 
						
							
							
								
								eliminate signedness warnings (issue  #5129 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6530  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								93a1922549 
								
							
								 
							
						 
						
							
							
								
								ensure that OSP-provided call duration limit is honored (issue  #5099 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6512  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								c5ca63efc9 
								
							
								 
							
						 
						
							
							
								
								eliminate compiler warning (issue  #5094 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6511  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								421ceff171 
								
							
								 
							
						 
						
							
							
								
								don't send OSP tokens do devices that are not OSP aware (issue  #5093 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6493  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								06e4ba227d 
								
							
								 
							
						 
						
							
							
								
								send the correct Call-ID when using OSP (issue  #5095 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6490  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								25f3403b21 
								
							
								 
							
						 
						
							
							
								
								don't access freed memory if the frame was malloc'd  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6484  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								746efc536a 
								
							
								 
							
						 
						
							
							
								
								ensure that the MOH_QUIET flag gets set for the mode "quietmp3nb"  
							
							... 
							
							
 
							
							add mode to the output of the "moh classes show" cli command
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6463  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9519f6c5f4 
								
							
								 
							
						 
						
							
							
								
								clean up, use make functions instead of subshells, remove unused stuff  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6449  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								fcc3a3ac32 
								
							
								 
							
						 
						
							
							
								
								don't install moh functions if no classes are configured (issue  #5025  with mods)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6412  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4c6693f39d 
								
							
								 
							
						 
						
							
							
								
								add count to 'show keys' (issue  #5002 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6383  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								98563fdb73 
								
							
								 
							
						 
						
							
							
								
								formatting fixes and compile fix for FreeBSD (issue  #5004 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6381  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3442368b28 
								
							
								 
							
						 
						
							
							
								
								ensure that features are not duplicated during reload (issue  #3764 , take two)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6377  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								9e9f3ace21 
								
							
								 
							
						 
						
							
							
								
								add ability to map feature sequences to applications (issue  #3764 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6374  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								2cde73fddb 
								
							
								 
							
						 
						
							
							
								
								make sure realtime/high scheduling priority is relinquished before executing an AGI script (issue  #4930 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6368  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								d69e96de11 
								
							
								 
							
						 
						
							
							
								
								allow custom dialplan functions to be called from AGI (issue  #4855 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6363  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								3315ea79b9 
								
							
								 
							
						 
						
							
							
								
								add CONTROL STREAM FILE AGI command (issue  #4738 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6360  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								ff971379f4 
								
							
								 
							
						 
						
							
							
								
								support new format for musiconhold.conf (issue  #4908 )  
							
							... 
							
							
 
							
							support non-SLINEAR moh streams (issue #4908 )
add external app to feed TCP stream into Asterisk for moh (issue #4908 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6353  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4e153882d7 
								
							
								 
							
						 
						
							
							
								
								Fix usage text for AGI recieve text (bug  #4948 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6334  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								99d6c05f13 
								
							
								 
							
						 
						
							
							
								
								more pointer signedness fixes for gcc4 warnings  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6306  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								52594b6b12 
								
							
								 
							
						 
						
							
							
								
								fix a bunch of gcc4 warnings realted to pointer signedness  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6290  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8712d1d7f1 
								
							
								 
							
						 
						
							
							
								
								Fix timestamp issue with features (bug  #4760  with mods)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6268  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								4f0d1b8428 
								
							
								 
							
						 
						
							
							
								
								Fix sighup with AGI (bug  #4854 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6264  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								86ec024624 
								
							
								 
							
						 
						
							
							
								
								Fix music on hold leak (bug  #4842 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6244  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								eeb34ffd63 
								
							
								 
							
						 
						
							
							
								
								more formatting fixes! (bug  #4780 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6191  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								22b0f5d306 
								
							
								 
							
						 
						
							
							
								
								add a library of timeval manipulation functions, and change a large number of usses to use the new functions (bug  #4504 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6146  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9d8d86e19d 
								
							
								 
							
						 
						
							
							
								
								phase two of string portability stuff:  
							
							... 
							
							
 
							
							don't need ast_ prefixes on functions
  use individual #defines for function presence
  add vasprintf to portability library
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6143  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								709689f76e 
								
							
								 
							
						 
						
							
							
								
								fix typo in app description (bug  #4697 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6119  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								37184c4244 
								
							
								 
							
						 
						
							
							
								
								revert patch from bug  #4532  until CPU consumption problem can be resolved  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6111  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								771f699cdd 
								
							
								 
							
						 
						
							
							
								
								fix threading portability problem with FreeBSD (bug  #4532 )  
							
							... 
							
							
 
							
							ensure that all mpg123 child processes get killed when the parent is killed (bug #4532 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6086  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								eb397f08df 
								
							
								 
							
						 
						
							
							
								
								reverse arguments to ast_tvdiff_ms, so they match the 'raw' math being used between the arguments  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6083  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8079f53c01 
								
							
								 
							
						 
						
							
							
								
								don't hangup the channel when a RECEIVE TEXT command times out (bug  #4607 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6082  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								5df2640539 
								
							
								 
							
						 
						
							
							
								
								use AST_MAX_CONTEXT  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6079  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								c18fd5cd8c 
								
							
								 
							
						 
						
							
							
								
								more ast_copy_string conversions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6075  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f64717b556 
								
							
								 
							
						 
						
							
							
								
								clean up compiler warnings during build on 64-bit systems  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6059  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f268ea2b3c 
								
							
								 
							
						 
						
							
							
								
								make CLI output use singular/plural when appropriate (bug  #4654 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6047  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								de87676975 
								
							
								 
							
						 
						
							
							
								
								Apply NODIR Patch (Bug  #4619 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6017  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								061caa34c1 
								
							
								 
							
						 
						
							
							
								
								support cancellation of attended transfers using the defined disconnect code (bug  #3729  with minor mods)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5991  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								767f019264 
								
							
								 
							
						 
						
							
							
								
								add AGI 'RECEIVE TEXT' command (bug  #4525 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5950  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								ffebf1f71b 
								
							
								 
							
						 
						
							
							
								
								Fix OSP stuff  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5943  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								0e9d920a60 
								
							
								 
							
						 
						
							
							
								
								move tools used during build into build_tools subdirectory  
							
							... 
							
							
 
							
							clean up Makefile headers
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5942  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2b8338cb52 
								
							
								 
							
						 
						
							
							
								
								more file version tags  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5866  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								4f299de252 
								
							
								 
							
						 
						
							
							
								
								major Makefile and build process improvements, including removal of all hardcoded paths (modules must now use run-time paths as they should) (bug  #4116 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5855  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								1bac31d6bd 
								
							
								 
							
						 
						
							
							
								
								more efficient (and understandable) ast_channel_walk_locked, and vastly more efficient ast_channel_by_name_locked (bug  #4265 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5853  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8ad230082e 
								
							
								 
							
						 
						
							
							
								
								make AGI 'TDD MODE' command behave as documented when the channel doesn't support options (bug  #4370 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5851  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								37efff4481 
								
							
								 
							
						 
						
							
							
								
								correct case of file type for one-touch monitoring (bug  #4443 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5832  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								77284bfaa6 
								
							
								 
							
						 
						
							
							
								
								fix Solaris compatibility issues (bug  #4339 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5747  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								d83eec795f 
								
							
								 
							
						 
						
							
							
								
								support labels as targets of SET PRIORITY command (bug  #4057 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5727  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								361109c377 
								
							
								 
							
						 
						
							
							
								
								add ability to control output format for one-touch-record feature (bug  #4190 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5693  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9bf21dbf58 
								
							
								 
							
						 
						
							
							
								
								more strncpy -> ast_copy_string conversions, fixing some buglets along the way  
							
							... 
							
							
 
							
							add recommendation to CODING-GUIDELINES to use ast_copy_string instead of strncpy in new code
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5686  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								4bb4df2e94 
								
							
								 
							
						 
						
							
							
								
								Fix features + astmm interaction (bug  #4217 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5613  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								852d05d94a 
								
							
								 
							
						 
						
							
							
								
								add missing newline to warning message (bug  #4183 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5591  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8634ef9e4a 
								
							
								 
							
						 
						
							
							
								
								don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug  #4110 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5533  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								14fba8d8be 
								
							
								 
							
						 
						
							
							
								
								Add option to park in the next slot (bug  #4028 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5512  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2d643dbc42 
								
							
								 
							
						 
						
							
							
								
								don't use %i for numeric input in scanf (bug  #4071 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5507  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								c2ef8373c7 
								
							
								 
							
						 
						
							
							
								
								report the number of rows updated when using RealTime update method (bug  #4066 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5496  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								06de953fbc 
								
							
								 
							
						 
						
							
							
								
								add ability to send transferring party to a dialplan target after they blind transfer another party (bug  #4056 , with mods)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5495  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								0687688042 
								
							
								 
							
						 
						
							
							
								
								ensure that res_config_odbc can handle columns with NULL values (bug  #3787 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5493  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								1f9ab2380a 
								
							
								 
							
						 
						
							
							
								
								use double-quotes instead of angle-brackets for non-system include files (bug  #4058 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5490  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f6ddf9b971 
								
							
								 
							
						 
						
							
							
								
								add count of parked calls to 'show parkedcalls' (bug  #4023 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5488  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								7bffc0459c 
								
							
								 
							
						 
						
							
							
								
								add missing newlines, fix misspelling of nonexistent (bug  #4027 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5467  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b052fe894b 
								
							
								 
							
						 
						
							
							
								
								ensure that the random number generator(s) are always seeded with a different value during Asterisk startup  
							
							... 
							
							
 
							
							don't reinitialize random number generators in other modules
(bug #4017 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5459  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								bb1abed78f 
								
							
								 
							
						 
						
							
							
								
								Add datetime to AGI (bug  #3984 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5446  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								4b03dace5f 
								
							
								 
							
						 
						
							
							
								
								Fix little formatting thingy  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5435  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9cbc047b6a 
								
							
								 
							
						 
						
							
							
								
								Fix ADSI 'B' issue (bug  #3833 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5422  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b8a9e7558f 
								
							
								 
							
						 
						
							
							
								
								Add say date to AGi (bug  #3768 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5305  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								6347ced74a 
								
							
								 
							
						 
						
							
							
								
								Little say numer fix (bug  #3884 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5298  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								49ad55b85a 
								
							
								 
							
						 
						
							
							
								
								Continue with GET_DATA if no file is there (bug  #3878 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5290  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								a0a2592025 
								
							
								 
							
						 
						
							
							
								
								Fix cross compiling (bug  #3868 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5278  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e6e2e59b4d 
								
							
								 
							
						 
						
							
							
								
								Make sure AGI continues even when files aren't there (bug  #3862 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5263  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8aa722871d 
								
							
								 
							
						 
						
							
							
								
								Add additional fields for calling parameters per BT request  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5251  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2a89687393 
								
							
								 
							
						 
						
							
							
								
								fix repark of timed out parked calls (bug  #3777 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5250  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								730194d609 
								
							
								 
							
						 
						
							
							
								
								Merge Russell's formatting patch (bug  #3838 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5234  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								51226db44f 
								
							
								 
							
						 
						
							
							
								
								Fix chopping of voice prompts (bug  #3784 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5214  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f9cfe60312 
								
							
								 
							
						 
						
							
							
								
								Add support for Solaris/x86 (bug  #3064 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5199  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f146ecea99 
								
							
								 
							
						 
						
							
							
								
								Fixed Parking bug where SIP calls would loose MOH after an attended transfer to  
							
							... 
							
							
 
							
							the park extension.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5193  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								badc4dec46 
								
							
								 
							
						 
						
							
							
								
								Make mpg123 behave more nicely  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5142  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								18d9b26cf9 
								
							
								 
							
						 
						
							
							
								
								Rework channel structure to eliminate "pvt" portion of channel (bug  #3573 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5137  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f8fc683adc 
								
							
								 
							
						 
						
							
							
								
								Add "StartMusicOnHold and "StopMusicOnHold" apps (bug  #3703 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5124  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8295c77e9c 
								
							
								 
							
						 
						
							
							
								
								Add additional parking events (bug  #3620 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5087  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f320936bbb 
								
							
								 
							
						 
						
							
							
								
								Add descriptions for monitor action events (bug  #3610 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5046  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								5057e4898f 
								
							
								 
							
						 
						
							
							
								
								Add atxfer fix (bug  #3592 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5045  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								69061dec64 
								
							
								 
							
						 
						
							
							
								
								Merge anthm's ODBC sanity check fix (bug  #3529 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5042  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f2f3825130 
								
							
								 
							
						 
						
							
							
								
								Make sure we search for url prefix only in format, not in filename (bug  #3613 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5041  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								41453ebf74 
								
							
								 
							
						 
						
							
							
								
								Copy/paste errors (bug  #3559 ,  #3560 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5007  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								88a49f727b 
								
							
								 
							
						 
						
							
							
								
								Merge "show features" (bug  #3515 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4971  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								d0a80c33d7 
								
							
								 
							
						 
						
							
							
								
								Fix parking issue (bug  #3396 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4894  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								5f726ad8c7 
								
							
								 
							
						 
						
							
							
								
								Merge config updates (bug  #3406 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4889  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								17c311c9b9 
								
							
								 
							
						 
						
							
							
								
								Un-revert in preparation for actual fix  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4880  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								28efa96e0d 
								
							
								 
							
						 
						
							
							
								
								repeal config prototype changes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4879  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								11cac381b4 
								
							
								 
							
						 
						
							
							
								
								Fix res_monitor asterisk issue (bug  #3399 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4869  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								0c30452423 
								
							
								 
							
						 
						
							
							
								
								update copyright headers for 2005  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4868  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9edab98b2c 
								
							
								 
							
						 
						
							
							
								
								Warn about wrong version of mpg123 (bug  #3392 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4862  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2184f91230 
								
							
								 
							
						 
						
							
							
								
								Add stereoize (bug  #3142 ), faster than soxmix  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4859  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								bec6aaf064 
								
							
								 
							
						 
						
							
							
								
								Fix ODBC to clear title each time (bug  #3379 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4851  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								840f035827 
								
							
								 
							
						 
						
							
							
								
								Merge hold patch (bug  #1840 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4823  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								261b4a85e1 
								
							
								 
							
						 
						
							
							
								
								Fix static db problem  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4813  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								010da5943a 
								
							
								 
							
						 
						
							
							
								
								Fix one touch record (bug  #3263 , take two)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4760  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2c1f9b84ff 
								
							
								 
							
						 
						
							
							
								
								Check moh files at runtime (bug  #3314 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4752  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								92eb0c2018 
								
							
								 
							
						 
						
							
							
								
								More flagification, courtesy drumkilla (bug  #3280 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4748  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								34ff765820 
								
							
								 
							
						 
						
							
							
								
								Merge anthm's monitor fixes (better default path, set variable for monitor) (bug  #3266 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4745  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								77dafbed41 
								
							
								 
							
						 
						
							
							
								
								Merge Tony's one touch record improvements (bug  #3263 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4742  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								13f514e143 
								
							
								 
							
						 
						
							
							
								
								Improve indications formatting (bug  #3298 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4737  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								7af0234fa7 
								
							
								 
							
						 
						
							
							
								
								Various small fixups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4725  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								03458dc73a 
								
							
								 
							
						 
						
							
							
								
								Various moh fixes (bug  #3291 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4724  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2d8160ecd5 
								
							
								 
							
						 
						
							
							
								
								AGI formatting fixes (bug  #3270 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4715  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e83f71679f 
								
							
								 
							
						 
						
							
							
								
								Fix typo in moh output (bug  #3265 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4706  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								11e6ed5eac 
								
							
								 
							
						 
						
							
							
								
								ODBC CLI improvements (bug  #3220 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4702  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								51880b7ddc 
								
							
								 
							
						 
						
							
							
								
								Fix typo for blind transfer (bug  #3259 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4696  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								45b4dbf298 
								
							
								 
							
						 
						
							
							
								
								Fix music on hold to quitat hangup rather than during channel destruction (bug  #3035 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4691  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								87b40b4d14 
								
							
								 
							
						 
						
							
							
								
								Stream courtesy tone if appropriate  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4683  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								fd5cf4bdec 
								
							
								 
							
						 
						
							
							
								
								Make sure time limit is the "backup" one when interpreting features  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4681  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9f232928dc 
								
							
								 
							
						 
						
							
							
								
								Various/assundry cleanups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4680  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								3092cb538e 
								
							
								 
							
						 
						
							
							
								
								allow sounds to be configurable  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4678  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								526622d6e0 
								
							
								 
							
						 
						
							
							
								
								Merge Tony's attended # transfer with changes (bug  #3241 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4677  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								7568d9a4ef 
								
							
								 
							
						 
						
							
							
								
								Merge OSP updates from matt nicholson (with changes)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4674  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								66049c961b 
								
							
								 
							
						 
						
							
							
								
								tweak to make music load classes more elegantly  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4661  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								edd3fe50fb 
								
							
								 
							
						 
						
							
							
								
								fix bug added to my code so I don  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4659  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e7d4ae8efa 
								
							
								 
							
						 
						
							
							
								
								Make features configurable and easier to implement  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4650  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								7b968f6151 
								
							
								 
							
						 
						
							
							
								
								Merge kpflemings moh_files fixes (bug  #3224 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4635  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								a2e70340b8 
								
							
								 
							
						 
						
							
							
								
								Don't die when a file is missing (bug  #3212 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4623  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								d3f7d3a958 
								
							
								 
							
						 
						
							
							
								
								Formatting fixes, safe_system instead of system, cleanups (bug  #3171 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4579  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								0255d5805f 
								
							
								 
							
						 
						
							
							
								
								Merge gramatical fixes from corydon (bug  #3180 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4576  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								10a6e598ac 
								
							
								 
							
						 
						
							
							
								
								misplaced chdir call on moh DoH\!  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4555  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								713a2eb072 
								
							
								 
							
						 
						
							
							
								
								Merge anthm's native MOH patch (bug  #2639 ) he promises me he'll rid it of ast_flag_moh...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4552  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								3fde2e56b8 
								
							
								 
							
						 
						
							
							
								
								Fix AGI to know about "builtin" variables, too (bug  #2737 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4538  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b3a0ef24ed 
								
							
								 
							
						 
						
							
							
								
								Fix comment issues (bug  #3089 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4479  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								0f205bb079 
								
							
								 
							
						 
						
							
							
								
								Add "SAY ALPHA" (matt nicholson)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4445  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								998621f76a 
								
							
								 
							
						 
						
							
							
								
								Fixed call parking, added separate paramater to allow/disallow call parking on  
							
							... 
							
							
 
							
							Zaptel interfaces (canpark=yes/no in zapata.conf), added urlbase paramater to
Monitor so that a url can optionally be included in CDR (user field), cleaned up a couple of minor things
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4413  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								5789ae4d18 
								
							
								 
							
						 
						
							
							
								
								Make music on hold truly optional (bug  #2998 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4411  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								c46e21252c 
								
							
								 
							
						 
						
							
							
								
								Big diet for struct ast_channel  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4399  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								a56e3a0a9f 
								
							
								 
							
						 
						
							
							
								
								Increase max buffer size (bug  #2926 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4327  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8f2b687a95 
								
							
								 
							
						 
						
							
							
								
								Make realtime pbx understand patterns.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4326  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								5e650c8260 
								
							
								 
							
						 
						
							
							
								
								Build out "multi" version of realtime config (directory and realtime extensions will need this)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4324  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								a69c0016da 
								
							
								 
							
						 
						
							
							
								
								Realtime improvements  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4314  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								536d9d370e 
								
							
								 
							
						 
						
							
							
								
								Minor realtime improvements  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4311  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								834627669e 
								
							
								 
							
						 
						
							
							
								
								Check that FD's are open before closing (bug  #2858 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4279  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								17d5d7bdb7 
								
							
								 
							
						 
						
							
							
								
								Oops  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4271  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								eedf47ac8f 
								
							
								 
							
						 
						
							
							
								
								Add GET FULL VARIABLE AGI command  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4270  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								94f6f76fbe 
								
							
								 
							
						 
						
							
							
								
								Add get option command (bug  #2868 , thanks junky!)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4261  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								483146e034 
								
							
								 
							
						 
						
							
							
								
								Make res crypto less chatty (bug  #2857 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4245  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								134e6180c5 
								
							
								 
							
						 
						
							
							
								
								Disable echo canceller for digital calls (bug  #2785 ), fix build on MacOSX (bug  #2803 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4170  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								193cc5bb0d 
								
							
								 
							
						 
						
							
							
								
								Fix non-std characters  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4160  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								94994626b6 
								
							
								 
							
						 
						
							
							
								
								Pass through flash hook  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4158  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								bec04aa020 
								
							
								 
							
						 
						
							
							
								
								Misc code fixes (bug  #2762 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4131  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								3c12ea1c89 
								
							
								 
							
						 
						
							
							
								
								Cleanup formatting in bug 2741 patch  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4118  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b7015cb9bc 
								
							
								 
							
						 
						
							
							
								
								Transfer improvements and fixes (bug  #2741 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4113  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								73831ac046 
								
							
								 
							
						 
						
							
							
								
								More memory checks  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4056  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								031a65ee73 
								
							
								 
							
						 
						
							
							
								
								Fix minor OSP issue  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4048  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9f5f95fe87 
								
							
								 
							
						 
						
							
							
								
								Remove late-night excuse for wasting cpu cycles.  revert previous res_agi change  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4029  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								787822b4c8 
								
							
								 
							
						 
						
							
							
								
								Minor improvements to debug output (bug  #2644 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4017  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								8b8d26f9bc 
								
							
								 
							
						 
						
							
							
								
								Fix pbx_builtin_setlanguage to not seg when data is a NULL ptr.  Also fix AGI so we dont run into this with other specific problems as well. (bug 2641)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3990  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								513b6333fb 
								
							
								 
							
						 
						
							
							
								
								Fix SIP buglets  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3965  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								ed62f449a9 
								
							
								 
							
						 
						
							
							
								
								Oops, we have to be able to pass multiple restrictions for when we go to voicemail...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3937  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								ebb18daf22 
								
							
								 
							
						 
						
							
							
								
								Major changes to res_config to support centralized config, eliminate configuration of res_config_odbc, update config examples, integrate with iax2, remove mysql friends from iax2, put on flame retardant vest...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3914  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								fce17976e9 
								
							
								 
							
						 
						
							
							
								
								Major PBX revamps (including labels, update examples)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3886  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								04fc29c8b2 
								
							
								 
							
						 
						
							
							
								
								Huge callerid rework (might break H.323, others)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3874  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b1b4db95c2 
								
							
								 
							
						 
						
							
							
								
								Fix FastAGI working with non default ports (bug 2539)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3852  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								ddf2648326 
								
							
								 
							
						 
						
							
							
								
								Fix BSD build  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3849  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								aa2e435d82 
								
							
								 
							
						 
						
							
							
								
								Remove duplicate sys/socket.h include from res_agi.c  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3845  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								efd42d2d5c 
								
							
								 
							
						 
						
							
							
								
								make pick-up extension configurable.  update ChangeLog  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3843  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								fda8fa2367 
								
							
								 
							
						 
						
							
							
								
								add includes in res_agi.c to fix BSD compatibility  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3840  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								bf4ca23372 
								
							
								 
							
						 
						
							
							
								
								Make holdtime announcement say "less than 2 minutes" instead of "1 minutes" (bug  #2500 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3834  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								9812bcc03c 
								
							
								 
							
						 
						
							
							
								
								Include sys/socket.h in res/res_agi.c (bug 2490)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3828  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								1597114535 
								
							
								 
							
						 
						
							
							
								
								Implement Fast AGI (agi://) over TCP socket (Astricon talk idea)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3820  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								27e4a2ee57 
								
							
								 
							
						 
						
							
							
								
								Minor fixes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3807  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								574d3785ab 
								
							
								 
							
						 
						
							
							
								
								Add extra checks for keys and convenience encrypt/decrypt functions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3803  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								877f1f64c2 
								
							
								 
							
						 
						
							
							
								
								Cleanup code.  Spacing issues, nested if issues, lots of strlen used instead of ast_strlen_zero  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3800  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e228c88d2a 
								
							
								 
							
						 
						
							
							
								
								Merge anthm's monitor patch with minor mods (bug  #2383 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3797  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								bdc00dae0e 
								
							
								 
							
						 
						
							
							
								
								Merge ADSI parking announcement (bug  #2211 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3787  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								00f227a684 
								
							
								 
							
						 
						
							
							
								
								Properly lock management stuff (bug  #2406 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3759  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								52647db120 
								
							
								 
							
						 
						
							
							
								
								Changes from Dimitri for OSP codes, minor buglets  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3744  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								64b9a563f2 
								
							
								 
							
						 
						
							
							
								
								Make menu interruptible (bug  #2377 ), Also fix PBX "add extension" CLI (bug  #2289 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3732  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e7908a50e8 
								
							
								 
							
						 
						
							
							
								
								Add stream support and permit minimum respawn time (bug  #2254 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3723  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								344ec00439 
								
							
								 
							
						 
						
							
							
								
								Add additional timeout debugging information on parking  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3704  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								2a108b9b06 
								
							
								 
							
						 
						
							
							
								
								Merge NetBSD and Courtesty tone with modifications (bug  #2329 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3686  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								4210fd6ad9 
								
							
								 
							
						 
						
							
							
								
								make bug 2272 (which is actually caused by human error) less likely to happen  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3637  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								87a7a3aaff 
								
							
								 
							
						 
						
							
							
								
								Fix little oops on sizeof()  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3609  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								6723ea3afb 
								
							
								 
							
						 
						
							
							
								
								Oops, forgot message length  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3608  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								3ff53cd50b 
								
							
								 
							
						 
						
							
							
								
								Create binary versions of signature functions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3607  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								7acee329e1 
								
							
								 
							
						 
						
							
							
								
								Merge BSD stack size work (bug  #2067 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3596  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								27d0ebc686 
								
							
								 
							
						 
						
							
							
								
								Only play announce time on first pass  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3583  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								be02813c26 
								
							
								 
							
						 
						
							
							
								
								Keep track of timelimit across entries to ast_channel_bridge (bug  #2222 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3582  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								892b06e282 
								
							
								 
							
						 
						
							
							
								
								Add BKW's fix so that MOH doesn't get killed on Call Parking  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3573  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								f3522b6c01 
								
							
								 
							
						 
						
							
							
								
								Plane commits (a.k.a. the Delta deltas): 1) Make muted reconnect 2) Add "X" option to meetme and add ${MEETME_EXIT_CONTEXT}, 3) Allow SIP call parking with supervised transfer, 4) Only create parking entries when calls actually get parked, 5) Add "sunshine" song, 6) Update hardware documentation, 7) Don't load empty strings from history file  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3572  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								27e3cd9ca8 
								
							
								 
							
						 
						
							
							
								
								Merge gryn's transfer digit timeout patch (bug  #2184 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3555  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								bf70a01da6 
								
							
								 
							
						 
						
							
							
								
								Merge alternate hangup and meetme patches from Matt N.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3529  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4dba976a7f 
								
							
								 
							
						 
						
							
							
								
								added support to be able to set the channel var TRANSFER_CONTEXT so when  
							
							... 
							
							
 
							
							a #transfer is executed it uses ${TRANSFER_CONTEXT} from transferree else
from transferer else it acts as always
-anthm
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3499  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								569b95352a 
								
							
								 
							
						 
						
							
							
								
								rename "parking" to "features" in preparation for some more (possibly post 1.0) feature additions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3463  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								57217916f1 
								
							
								 
							
						 
						
							
							
								
								First pass at AGI registration  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3461  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								de4188df06 
								
							
								 
							
						 
						
							
							
								
								Merge musiconhold stuff (bug  #2027 ), restructure AGI to eventually support registration  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3460  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								044ad2e2e7 
								
							
								 
							
						 
						
							
							
								
								Merge remaining audit patch (save dlfcn.c)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3436  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2f1c9c690f 
								
							
								 
							
						 
						
							
							
								
								Add missing include (bug  #2040 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3433  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								0c6b76f7c2 
								
							
								 
							
						 
						
							
							
								
								Make parked calls events more consistant (bug  #2033 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3432  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								e42c11905e 
								
							
								 
							
						 
						
							
							
								
								fix compiler warning in res_config_odbc.c  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3424  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								f107562f75 
								
							
								 
							
						 
						
							
							
								
								fix res_config_odbc iax dual peer issue  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3414  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4113c814c7 
								
							
								 
							
						 
						
							
							
								
								Massive res_config_odbc.c formatting cleanups from bkw_.  Thanks!!!  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3405  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8426e454de 
								
							
								 
							
						 
						
							
							
								
								Massive code formatting cleanup in res_odbc.c thanks to bkw_  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3404  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								65fc87b245 
								
							
								 
							
						 
						
							
							
								
								Merge bkw_'s ODBC patch  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3395  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								f63d46097d 
								
							
								 
							
						 
						
							
							
								
								Back out accidental changes by anthm  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3378  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								75d4369dfc 
								
							
								 
							
						 
						
							
							
								
								autodial update  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3377  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2f911dfba6 
								
							
								 
							
						 
						
							
							
								
								Use INET_ADDRLEN (bug  #1956 ) (from airport!)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3364  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								eb6b35b75f 
								
							
								 
							
						 
						
							
							
								
								Display invalid extension when there is one, fix minor OSP typo, Don't send 200 OK after 403 Forbidden on SUBSCRIBE  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3349  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								f97df161f4 
								
							
								 
							
						 
						
							
							
								
								Create reentrant ast_inet_ntoa and replace all inet_ntoa's with ast_inet_ntoa's (but  #1944 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3345  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								3d0e3d3c0f 
								
							
								 
							
						 
						
							
							
								
								More formatting cleanups.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3337  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								80c9620612 
								
							
								 
							
						 
						
							
							
								
								Add sample config file, implement verification  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3300  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2f421a55da 
								
							
								 
							
						 
						
							
							
								
								Small outgoing OSP cleanups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3299  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								1d473f25dd 
								
							
								 
							
						 
						
							
							
								
								Add outgoing OSP support (SIP only at this point)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3296  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8801247d76 
								
							
								 
							
						 
						
							
							
								
								Remove pthread.h from source.  We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3276  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2f4a0dc3f5 
								
							
								 
							
						 
						
							
							
								
								Fix potential deadlocks in res_monitor  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3272  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								d208532e6e 
								
							
								 
							
						 
						
							
							
								
								x86-64 compile fixes and cleanups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3202  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								319011b0e3 
								
							
								 
							
						 
						
							
							
								
								Fix ODBC build for FreeBSD  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3197  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								c96b39a960 
								
							
								 
							
						 
						
							
							
								
								Merge res_odbc and res_config  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3186  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								727abcdec7 
								
							
								 
							
						 
						
							
							
								
								Merge FreeBSD locking fixes (bug  #1411 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3176  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								22de310e04 
								
							
								 
							
						 
						
							
							
								
								fix res_monitor bug  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3167  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								0062fe9588 
								
							
								 
							
						 
						
							
							
								
								IAX2 fixup, fix res_monitor sillyseg  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3144  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								103bb4a334 
								
							
								 
							
						 
						
							
							
								
								Enhancements for zaptel+bsd (bug  #1781 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3143  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								aa2795cc46 
								
							
								 
							
						 
						
							
							
								
								Get rid of small copmile warning  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3142  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								269507ad59 
								
							
								 
							
						 
						
							
							
								
								Fix handling when MONITOR_EXEC is unspecified  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3141  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								799b876aa0 
								
							
								 
							
						 
						
							
							
								
								Make monitor merge application settable via variable, allow setting of variables via manager interface, allow mix flag to be set via manager (bug  #1268 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3137  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8136198e53 
								
							
								 
							
						 
						
							
							
								
								Use ast_strlen_zero in res_musiconhold.c  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3106  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								1798abd909 
								
							
								 
							
						 
						
							
							
								
								Minor path tweak  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3054  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								6195dd35e0 
								
							
								 
							
						 
						
							
							
								
								Make ast_channel_walk become ast_channel_walk_locked  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3029  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4d1137ded4 
								
							
								 
							
						 
						
							
							
								
								Fix a couple of small typos (bug  #1648 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2968  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4f51ef7ab7 
								
							
								 
							
						 
						
							
							
								
								Unbuffered music on hold  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2811  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								6cbc92b760 
								
							
								 
							
						 
						
							
							
								
								Portability fix, use the shells path for sed and env  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2787  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								286d0656e2 
								
							
								 
							
						 
						
							
							
								
								Revert formatting changes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2786  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								5385ca0a0e 
								
							
								 
							
						 
						
							
							
								
								applied final release of bug 1353 per Mark's permission  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2782  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								34e415222e 
								
							
								 
							
						 
						
							
							
								
								* Patch to Makefiles to allow a script to query the make envirnoment.  
							
							... 
							
							
 
							
							* contrib/scripts/astxs (The tool itself)
* see bug 1329
-Anthony Minessale (anthm)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2702  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								512583709a 
								
							
								 
							
						 
						
							
							
								
								Fix double parking crash (bug  #1302 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2645  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								13bca43aa8 
								
							
								 
							
						 
						
							
							
								
								Get rid of all that old needlock garbage now that we're using recursive mutexes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2644  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								eeb2ca5b26 
								
							
								 
							
						 
						
							
							
								
								Make read/write mode have a lock parameter and use it properly.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2572  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								96c7fb890e 
								
							
								 
							
						 
						
							
							
								
								Reduce volume of hold music to 8k / 4k  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2554  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								97c5b2b7d7 
								
							
								 
							
						 
						
							
							
								
								Take out unnecessary setting of delivery times.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2510  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								7c35f68e29 
								
							
								 
							
						 
						
							
							
								
								Fix milliwatt and musiconhold to know about delivery times  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2508  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								32a11a2b20 
								
							
								 
							
						 
						
							
							
								
								Remove extra \r\n from manager event sent by res_parking.c (bug  #1134 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2283  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								a232d8e060 
								
							
								 
							
						 
						
							
							
								
								Move ast_get_group from res_parking.c to channel.c  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2263  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								7cdb6d36f4 
								
							
								 
							
						 
						
							
							
								
								Fix a couple of memory leaks  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2151  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								82e18770bc 
								
							
								 
							
						 
						
							
							
								
								Increase buffer size (1005)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2135  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8baa1ed52e 
								
							
								 
							
						 
						
							
							
								
								Add 'm' option to Monitor app to use soxmix (if available) to mix the output recording to one file.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2132  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								860f35a7ab 
								
							
								 
							
						 
						
							
							
								
								Add recording agent's calls patch. Basically the call starts recording when the agent picks up and the file is stamped with the agent's id and the timestamp. Also optionally a URL link to that file may be inserted in the userfield of the CDR record. By default the recorded file will be mixed if soxmix is available.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2121  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								81cf763a97 
								
							
								 
							
						 
						
							
							
								
								Fix res_parking  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2096  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2ad3e1428d 
								
							
								 
							
						 
						
							
							
								
								Create manager event on parking  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2095  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								718d215046 
								
							
								 
							
						 
						
							
							
								
								Document SetMusicOnHold. Bug  #783  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1940  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								1a0797e6bd 
								
							
								 
							
						 
						
							
							
								
								use a default file name for res_monitor, if none was given. Bug  #704  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1930  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								6ae49b9ccd 
								
							
								 
							
						 
						
							
							
								
								Don't core on mpg123. Bug  #671  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1928  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								2154f62f51 
								
							
								 
							
						 
						
							
							
								
								Hangup calling channel when transferring peer  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1786  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8bcee712e0 
								
							
								 
							
						 
						
							
							
								
								Fix copy/paste error. Bug  #338  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1769  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								d387ca7779 
								
							
								 
							
						 
						
							
							
								
								Handle mpg123 failures without leaking fd's  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1692  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4ce283ff18 
								
							
								 
							
						 
						
							
							
								
								Make it build and run on MacOS X  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1673  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								b5bcecce5d 
								
							
								 
							
						 
						
							
							
								
								Add DESTDIR support (bug  #200 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1664  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								55e664cb00 
								
							
								 
							
						 
						
							
							
								
								Fix various compiler warnings (bug  #322 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1570  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4e13099add 
								
							
								 
							
						 
						
							
							
								
								Improve child process reaping (bug  #278 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1521  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								ac19ba51bd 
								
							
								 
							
						 
						
							
							
								
								Fix small logic errors (bug  #242 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1494  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								479a67e629 
								
							
								 
							
						 
						
							
							
								
								BSD portability enhancements (bug  #234 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1486  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								1e19f72077 
								
							
								 
							
						 
						
							
							
								
								First of Jayson's manager patches  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1485  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								d3bdd36e46 
								
							
								 
							
						 
						
							
							
								
								depend stuff  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1375  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								501c800c5a 
								
							
								 
							
						 
						
							
							
								
								Show the names of the codecs instead of the numbers (bug  #92 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1348  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								1bb58646de 
								
							
								 
							
						 
						
							
							
								
								Totally revamp thread debugging to support locating and removing deadlocks  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1310  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								45bdf40534 
								
							
								 
							
						 
						
							
							
								
								Wait for mpg123 to die  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1285  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								9f51b3590d 
								
							
								 
							
						 
						
							
							
								
								Make parking resume properly when in macro  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1270  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								01fcb9779a 
								
							
								 
							
						 
						
							
							
								
								Allow groups to be checked in reverse order, make musiconhold die on restart  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1269  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								34b28107e2 
								
							
								 
							
						 
						
							
							
								
								Minor fixes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1235  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								27d3190aa2 
								
							
								 
							
						 
						
							
							
								
								Merge / correct MM's patches  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1227  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								cbd33586ac 
								
							
								 
							
						 
						
							
							
								
								Add a safe way to reload extensions config (don't change/delete the current extenions until extensions.conf was parsed and the new set of extensions is created) and add "extensions reload" CLI command so we could reload only extensions.conf config file without touching config files of other modules  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1183  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								1b473c2ef0 
								
							
								 
							
						 
						
							
							
								
								Merge 'T' and other dialing enhancements  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1156  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								4228090f88 
								
							
								 
							
						 
						
							
							
								
								Add and update .cvsignore files for .depend  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@976  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								1a3cd8e6ad 
								
							
								 
							
						 
						
							
							
								
								dep fix, pbx fix  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@962  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								f6764f4722 
								
							
								 
							
						 
						
							
							
								
								More contributed BSD enhancements  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@919  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								6eeee2496b 
								
							
								 
							
						 
						
							
							
								
								More BSD enhancements  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@916  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								89e0dd94a2 
								
							
								 
							
						 
						
							
							
								
								Add commonly used include headers  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@889  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								43604eb770 
								
							
								 
							
						 
						
							
							
								
								Implement call pickup on SIP, override context if appropriate  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@791  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								09e1c34d99 
								
							
								 
							
						 
						
							
							
								
								work around buggy redhat 9.o installs  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@776  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								5349624ae4 
								
							
								 
							
						 
						
							
							
								
								Make some useful management functions global  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@730  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								43b082cf5c 
								
							
								 
							
						 
						
							
							
								
								Merge Mahmut's recording patches  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@686  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								429d086d2c 
								
							
								 
							
						 
						
							
							
								
								Minor moh Makefile patch  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@680  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								2c64ccad0f 
								
							
								 
							
						 
						
							
							
								
								Tue Mar 18 07:00:01 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@652  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								ca908e767c 
								
							
								 
							
						 
						
							
							
								
								lun mar 17 19:11:15 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@649  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								61e446f04b 
								
							
								 
							
						 
						
							
							
								
								dom mar 16 23:37:23 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@647  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								ce58e5862d 
								
							
								 
							
						 
						
							
							
								
								Tue Mar  4 07:00:01 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@631  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								6315850d11 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@600  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								c1fd6c1e4c 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@597  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								a01d8d593f 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@562  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								77a1b3573d 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@547  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								ea59b1b791 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@544  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								8c020ca8fe 
								
							
								 
							
						 
						
							
							
								
								Version 0.2.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@506  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								c1e73a2736 
								
							
								 
							
						 
						
							
							
								
								Version 0.2.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@496  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								67751c3992 
								
							
								 
							
						 
						
							
							
								
								Version 0.2.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@483  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								bab0cfd263 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.12 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@474  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								123613853b 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.12 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@465  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								5b44727583 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.12 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@453  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								d5930d1fe8 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.12 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@446  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								62099ea6b9 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.12 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@440  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								bc1141dfff 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.11 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@426  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								f2784d97fd 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.10 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@398  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								eb97d576eb 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.10 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago