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  
				
					
						
							
							
								 
						
							
							
								70af28270d 
								
							
								 
							
						 
						
							
							
								
								Constify the result of a config retrieval function, to avoid mutilation (issue 7983).  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43364  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  
				
					
						
							
							
								 
						
							
							
								c2c4f86c72 
								
							
								 
							
						 
						
							
							
								
								merge markster's usersconf branch with some slight changes  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43052  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  
				
					
						
							
							
								 
						
							
							
								f7cac071d9 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 41269 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r41269 | russell | 2006-08-29 09:33:34 -0400 (Tue, 29 Aug 2006) | 3 lines
clean up last commit ... most notably, there is no reason to do heap
allocations here, and it also included a potential memory leak
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41270  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
							19 years ago  
				
					
						
							
							
								 
						
							
							
								8efd121371 
								
							
								 
							
						 
						
							
							
								
								Bugfix for 7813 applied to trunk as per patch supplied by stevens  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41267  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								acfa035afe 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 37417 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r37417 | kpfleming | 2006-07-12 08:18:21 -0500 (Wed, 12 Jul 2006) | 2 lines
get rid of some more printf's (although most of these were ifdef-ed out)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37418  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  
				
					
						
							
							
								 
						
							
							
								dd6de5ee4e 
								
							
								 
							
						 
						
							
							
								
								it's time... only enable global priority jumping if the config file says to do so  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32281  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								f515078c53 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 19345 via svnmerge from  
							
							... 
							
							
 
							
							https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r19345 | kpfleming | 2006-04-11 16:14:42 -0500 (Tue, 11 Apr 2006) | 2 lines
don't destroy the entire dialplan during 'reload', just atomically replace it like 'extensions reload' does (issue #6047 )
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19346  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  
				
					
						
							
							
								 
						
							
							
								08dfc15553 
								
							
								 
							
						 
						
							
							
								
								whitespace and formatting fix postponed from last commit:  
							
							... 
							
							
 
							
							fix indentation of a large function, localize some variables
and add/remove whitespace where needed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17827  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								25a61b9e08 
								
							
								 
							
						 
						
							
							
								
								split pbx_load_module so we can reduce the indentation depth.  
							
							... 
							
							
 
							
							Also convert to MOD_1 style.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17825  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								38f14cbca7 
								
							
								 
							
						 
						
							
							
								
								use FREE instead of free as pointer to the destructor function.  
							
							... 
							
							
 
							
							This way the MALLOC_DEBUG code will always get the correct argument.
(bug introduced in SVN15818)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17824  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								16728da6a7 
								
							
								 
							
						 
						
							
							
								
								Whitespace fix forgotten by someone who added a note about needing to fix this...  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16234  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								4ca73f8ae4 
								
							
								 
							
						 
						
							
							
								
								as reported in mantis  #6066 , fix a bunch of cli bugs and  
							
							... 
							
							
 
							
							inconsistencies.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15818  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								a84633ba26 
								
							
								 
							
						 
						
							
							
								
								Merged revisions 7831 via svnmerge from  
							
							... 
							
							
 
							
							/branches/1.2
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7832  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								d8dfa4434d 
								
							
								 
							
						 
						
							
							
								
								finish merging doxygen updates from issue  #5605  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7096  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  
				
					
						
							
							
								 
						
							
							
								053326ac85 
								
							
								 
							
						 
						
							
							
								
								ensure that priorityjumping option returns to its default during reload if it is no longer specified in extensions.conf  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6771  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							20 years ago  
				
					
						
							
							
								 
						
							
							
								779d033f21 
								
							
								 
							
						 
						
							
							
								
								move process_quotes_and_slashes to utils.c since it is used by both pbx_ael and pbx_config  
							
							... 
							
							
 
							
							clean up some formatting
remove some commented out reference code
move unload_module in pbx_ael down to be with the rest of the standard module functions
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6630  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  
				
					
						
							
							
								 
						
							
							
								5cc0413c54 
								
							
								 
							
						 
						
							
							
								
								add a global option to disable priority jumping in applications (when they get updated), settable in extensions.conf  
							
							... 
							
							
 
							
							change app_dial to use 'j' to _ENABLE_ priority jumping if it has been globally disabled
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6224  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  
				
					
						
							
							
								 
						
							
							
								ce89d985f2 
								
							
								 
							
						 
						
							
							
								
								allow global variables to be reset on reload (defaults to off) (bug  #4385 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5825  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								3c98814bb5 
								
							
								 
							
						 
						
							
							
								
								add 'dontwarn' option to asterisk.conf to appease the whining masses :p (bug  #4320 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5723  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								364e179b78 
								
							
								 
							
						 
						
							
							
								
								check to see if a comma or an open paren came first when splitting the application  
							
							... 
							
							
 
							
							from the application arguments (bug #4306 )
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5721  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								7d3f5785e9 
								
							
								 
							
						 
						
							
							
								
								fix some more typos and clarity issues  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5643  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								e82344f7e0 
								
							
								 
							
						 
						
							
							
								
								fix a little typo  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5641  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  
				
					
						
							
							
								 
						
							
							
								a9831e75ee 
								
							
								 
							
						 
						
							
							
								
								perform global variable substitution before splitting extension and cidmatch when reading in dialplan (bug  #4035 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5515  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  
				
					
						
							
							
								 
						
							
							
								fdff1f69b5 
								
							
								 
							
						 
						
							
							
								
								Add warning for _. match (bug  #4032 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5471  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								f0c880d6f6 
								
							
								 
							
						 
						
							
							
								
								silly typo  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5237  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								278a0a0891 
								
							
								 
							
						 
						
							
							
								
								Implement eswitch for evalulating variables at runtime (bug  #3168 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4780  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								82cbf28993 
								
							
								 
							
						 
						
							
							
								
								Add "Loopback" switch  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4070  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								996c8e7126 
								
							
								 
							
						 
						
							
							
								
								Add autofallthrough mode  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4020  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								b4142e0cd2 
								
							
								 
							
						 
						
							
							
								
								Allow you to use labels with + to be nice to Tilghman.  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3897  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							21 years ago  
				
					
						
							
							
								 
						
							
							
								027f79d840 
								
							
								 
							
						 
						
							
							
								
								Add '+foo' option, update sample config  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3888  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  
				
					
						
							
							
								 
						
							
							
								34988d1ce9 
								
							
								 
							
						 
						
							
							
								
								Allow "n" or "next" and "s" or "same" in dialplan logic priorities  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3885  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  
				
					
						
							
							
								 
						
							
							
								de3528f0be 
								
							
								 
							
						 
						
							
							
								
								Save CID and switches in "save dialplan" command (bug  #2279 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3630  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								8c4cacbd58 
								
							
								 
							
						 
						
							
							
								
								Use ' instead of " for quoting in extensions.conf (bug  #1872 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3257  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								d88a461764 
								
							
								 
							
						 
						
							
							
								
								Cleanup formatting  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3213  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								db8da85266 
								
							
								 
							
						 
						
							
							
								
								Cleanup formatting  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3212  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								bc80b3130d 
								
							
								 
							
						 
						
							
							
								
								Cleanup formatting  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3211  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								c53e76528d 
								
							
								 
							
						 
						
							
							
								
								Allow escaping of commas as well as ability to use quotes (bug  #1826 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3209  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  
				
					
						
							
							
								 
						
							
							
								f2ccbc81d9 
								
							
								 
							
						 
						
							
							
								
								Internationalize say_date_time, fix small pbx_config seglet (bug  #1537 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2871  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								0122a3ea08 
								
							
								 
							
						 
						
							
							
								
								Fix 'remove extension' completion  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2838  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								a23c89dd75 
								
							
								 
							
						 
						
							
							
								
								Fix some comments in pbx.c and pbx_config.c  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2223  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								83344af1c2 
								
							
								 
							
						 
						
							
							
								
								Fix add include (bug  #966 ) and small update to bug 890  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2103  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								1c838758c3 
								
							
								 
							
						 
						
							
							
								
								Save global variables across "save dialplan" (bug  #426 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2084  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								171865492f 
								
							
								 
							
						 
						
							
							
								
								revert half fixed bug (426)  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1974  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								ee342cc3b8 
								
							
								 
							
						 
						
							
							
								
								Add ww's improved syslog support (bug  #587 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1973  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								3171dea6ef 
								
							
								 
							
						 
						
							
							
								
								scanf != sscanf  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1816  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								250e28aaf4 
								
							
								 
							
						 
						
							
							
								
								Ignore leading spaces before application  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1784  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								143b3de606 
								
							
								 
							
						 
						
							
							
								
								Be less picky about spaces, and recognize invalid priorities  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1783  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								69bef6678a 
								
							
								 
							
						 
						
							
							
								
								Fix a typo  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1761  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							22 years ago  
				
					
						
							
							
								 
						
							
							
								4d0e046a06 
								
							
								 
							
						 
						
							
							
								
								Verify includes, and give warnings if invalid (bug  #429 )  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1667  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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								601df24372 
								
							
								 
							
						 
						
							
							
								
								Remember they have to be zero filled  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1257  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								cd5a6fd5d8 
								
							
								 
							
						 
						
							
							
								
								Allow extension names, include context, and switches to use global variables  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1256  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								e707a89e63 
								
							
								 
							
						 
						
							
							
								
								Allow globals in extensions.conf to reference previous variables  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1255  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								f4341a13d0 
								
							
								 
							
						 
						
							
							
								
								Add the possibility to delete all the contexts registered by a certain registrar with ast_merge_and_delete routine; make it the default behaviour when reloding extensions  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1187  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  
				
					
						
							
							
								 
						
							
							
								81a770b93f 
								
							
								 
							
						 
						
							
							
								
								Save dialplan in new format  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1065  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								0ad12d0e0b 
								
							
								 
							
						 
						
							
							
								
								Fix substantial typo in pbx_config  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1019  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								278d8a7319 
								
							
								 
							
						 
						
							
							
								
								Make pbx config work with astmm  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@935  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								a71b49f405 
								
							
								 
							
						 
						
							
							
								
								More OpenBSD patches  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@890  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  
				
					
						
							
							
								 
						
							
							
								f8755643cd 
								
							
								 
							
						 
						
							
							
								
								Merge enhanced status changes, add SIP subscribe from Andre  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@759  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								e6918cb42e 
								
							
								 
							
						 
						
							
							
								
								Merge hint patch, add new variables, and misc. PBX cleanups  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@722  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  
				
					
						
							
							
								 
						
							
							
								52a7b81e24 
								
							
								 
							
						 
						
							
							
								
								Thu Feb 13 07:00:00 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@613  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								2bd936105e 
								
							
								 
							
						 
						
							
							
								
								mer feb 12 14:56:57 CET 2003  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@612  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								63ff352808 
								
							
								 
							
						 
						
							
							
								
								Version 0.3.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@593  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							23 years ago  
				
					
						
							
							
								 
						
							
							
								5bbb08f041 
								
							
								 
							
						 
						
							
							
								
								Version 0.2.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@488  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  
				
					
						
							
							
								 
						
							
							
								71355b3fe0 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.9 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@356  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							24 years ago  
				
					
						
							
							
								 
						
							
							
								a71a6a44d3 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.8 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@290  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							25 years ago  
				
					
						
							
							
								 
						
							
							
								5d75c05877 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.7 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@258  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							25 years ago  
				
					
						
							
							
								 
						
							
							
								42d4c7991c 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.1 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@134  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							26 years ago  
				
					
						
							
							
								 
						
							
							
								891ed0c02a 
								
							
								 
							
						 
						
							
							
								
								Version 0.1.0 from FTP  
							
							... 
							
							
 
							
							git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
							
						 
						
							26 years ago