Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						1fd898bd84 
					 
					
						
						
							
							convert a couple of applications to the new module style  
						
						... 
						
						
						
						(STATIC_MODULE) to show what needs to be changed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17791  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-06 09:24:02 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						a60d8196df 
					 
					
						
						
							
							small cleanups to module.h and loader.c to start playing with  
						
						... 
						
						
						
						new-style modules using static symbols.
Everything will still work as before, but new-style modules
can now be defined by putting a '#define STATIC_MODULE' somewhere
before including module.h, then declaring STATIC_MODULE the
various methods (load, unload, key...) that the module is
supposed to supply, and adding a 'STD_MOD(MOD_1, reload_fn, NULL, NULL)'
macro call at the end.
A module compiled in this way will be loaded RTLD_NOW|RTLD_LOCAL
so symbol pollution is reduced, and symbols are resolved immediately.
Removing just the '#define STATIC_MODULE' will restore the old
behaviour.
In order for a module to be loaded RTLD_NOW|RTLD_LOCAL, it must not
export any symbol[1], and all the modules it depends on (e.g. res_*)
must be loaded already.
[1] Mechanisms are in place, and will be enabled later, to still
allow such modules to 'export' symbols and resolving the dependencies
irrespective of the load order.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17790  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-06 09:10:31 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						e57131511e 
					 
					
						
						
							
							the fix for bug  #6399  makes sense. thanks wrmem for the report.  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17753  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-06 08:02:35 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						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 
						
						
					 
					
						2006-04-06 06:55:38 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						2efcfc1549 
					 
					
						
						
							
							Issue  #6610  - build on Intel Mac  
						
						... 
						
						
						
						(Wish I could try this at home :-)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17735  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 20:14:51 +00:00 
						 
				 
			
				
					
						
							
							
								Joshua Colp 
							
						 
					 
					
						
						
							
						
						3f76f9e442 
					 
					
						
						
							
							Merged revisions 17702 via svnmerge from  
						
						... 
						
						
						
						https://origsvn.digium.com/svn/asterisk/branches/1.2 
........
r17702 | file | 2006-04-05 17:01:19 -0300 (Wed, 05 Apr 2006) | 2 lines
Unlock channel on failure so that ast_mutex_destroy doesn't throw a fit (issue #6647  reported by casper)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17726  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
					
						2006-04-05 20:05:09 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						e4c129c1b6 
					 
					
						
						
							
							- Doxygen fixes  
						
						... 
						
						
						
						- Typos corrected
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17694  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 19:32:40 +00:00 
						 
				 
			
				
					
						
							
							
								Joshua Colp 
							
						 
					 
					
						
						
							
						
						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 
						
						
					 
					
						2006-04-05 18:37:29 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						ef6b50b706 
					 
					
						
						
							
							Issue  #5637  - Realtime driver for PostgreSQL (mguesdon)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17628  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 17:46:09 +00:00 
						 
				 
			
				
					
						
							
							
								Tilghman Lesher 
							
						 
					 
					
						
						
							
						
						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 
						
						
					 
					
						2006-04-05 17:44:44 +00:00 
						 
				 
			
				
					
						
							
							
								Tilghman Lesher 
							
						 
					 
					
						
						
							
						
						701b49027d 
					 
					
						
						
							
							Bug 6508 - if priority was a number, then findlabel fails  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17626  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 17:03:30 +00:00 
						 
				 
			
				
					
						
							
							
								Christian Richter 
							
						 
					 
					
						
						
							
						
						7028946605 
					 
					
						
						
							
							some final fixes for cpn  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17594  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 15:54:15 +00:00 
						 
				 
			
				
					
						
							
							
								Christian Richter 
							
						 
					 
					
						
						
							
						
						ce8fc47ffc 
					 
					
						
						
							
							* advanced the error Handling routine for wrong frames from mISDN  
						
						... 
						
						
						
						* added more code for connected party number handling
* fixed the portinfo program, it can now be used to test mISDN again
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17562  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 14:51:48 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						414702f562 
					 
					
						
						
							
							Add some documentation and a todo for enum.c  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17530  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 13:53:06 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						4b27966e71 
					 
					
						
						
							
							Issue  #6654 : Enum crash on ADDRESS record, possibly bad record, but still a crash (imported from 1.2)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17490  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 06:52:41 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						a62aea97c6 
					 
					
						
						
							
							Add reference pointers to RFCs  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17488  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 06:43:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tilghman Lesher 
							
						 
					 
					
						
						
							
						
						e019a106c7 
					 
					
						
						
							
							Bug 6886 - Add application TryExec, which does mostly the same thing, but returns differently  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17454  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-05 03:53:41 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						3cf9339a6d 
					 
					
						
						
							
							Fix formatting  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17415  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 19:48:42 +00:00 
						 
				 
			
				
					
						
							
							
								Christian Richter 
							
						 
					 
					
						
						
							
						
						d7a839a299 
					 
					
						
						
							
							fixed some essential segfaults happening under heavy load. Added a bit more error handling if we receive wrong data form mISDN (e.g. if we crashed before => handle_err() ). Added first steps to implement the parseing of the connected party number.  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17404  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 19:09:26 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						f8f83ff9b8 
					 
					
						
						
							
							Issue  #6884  - manager.c formatting (casper)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17389  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 19:03:12 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						42fddfa075 
					 
					
						
						
							
							Formatting cleanup  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17369  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 18:34:21 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						654500ebca 
					 
					
						
						
							
							Block 17367 from trunk, since it's already fixed (me bad)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17368  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 18:30:31 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						0a1898d8d6 
					 
					
						
						
							
							Issue  #6878  - Manager event DNDstate hidden under verbose option (casper)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17366  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 18:26:24 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						37ff50a890 
					 
					
						
						
							
							- Don't return AST_DEVICE_UNKNOWN to devicestate engine, since this will  
						
						... 
						
						
						
						cause a channel walk...
- Doxygen fixed for devicestate.c
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17365  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 18:24:41 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						982a66a93a 
					 
					
						
						
							
							Issue  #6882  
						
						... 
						
						
						
						- move "res=-1" out of verbose block. 
- minor code cleanup
Imported from 1.2 branch
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17350  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 18:02:40 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						66adefc789 
					 
					
						
						
							
							these files are now unused, corresponding functions are merged  
						
						... 
						
						
						
						into format_pcm.c
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17331  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 17:13:37 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						6aa460f81d 
					 
					
						
						
							
							remove an unused function.  
						
						... 
						
						
						
						Funny enough, compiling with -O6 gives no warning, whereas -O2 gives
a warning for an unused function declared static.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17330  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 17:12:35 +00:00 
						 
				 
			
				
					
						
							
							
								Matthew Fredrickson 
							
						 
					 
					
						
						
							
						
						a868675e2f 
					 
					
						
						
							
							chan_iax2 cleanups and optimizations ( #6858 )  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17329  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 17:05:01 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						a536eb6ec7 
					 
					
						
						
							
							minor code clean up from 6880  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17312  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 16:59:27 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						b9e7287ce6 
					 
					
						
						
							
							adds manager event when an iax2 peer loses registration.  
						
						... 
						
						
						
						also some minor code clean up. patch from 6868 with minor
changes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17311  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 16:15:40 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						7261d52be1 
					 
					
						
						
							
							ogg_vorbis now compiles so put it back in.  
						
						... 
						
						
						
						On passing, remove an unnecessary initializazion in format_sln.c
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17285  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 15:40:47 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						28fd3a4ef1 
					 
					
						
						
							
							Merged revisions 17283 via svnmerge from  
						
						... 
						
						
						
						https://svn.digium.com/svn/asterisk/branches/1.2 
........
r17283 | mogorman | 2006-04-04 10:24:50 -0500 (Tue, 04 Apr 2006) | 3 lines
Adds documentation to show what the w flag.
Patch from Ian Kinner at Digium.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17284  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
					
						2006-04-04 15:27:47 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						ac0395fac3 
					 
					
						
						
							
							temporarily disconnect ogg_vorbis from the build while i update it  
						
						... 
						
						
						
						(should be a matter of a couple of hours).
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17265  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 14:39:22 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						4beb6deeaa 
					 
					
						
						
							
							Largely simplify format handlers (for file copy etc.)  
						
						... 
						
						
						
						collecting common functions in a single place and removing
them from the individual handlers.
The full description is on mantis,
http://bugs.digium.com/view.php?id=6375 
and only the ogg_vorbis handler needs to be converted to
the new structure.
As a result of this change, format_au.c and format_pcm_alaw.c
should go away (in a separate commit) as their functionality
(trivial) has been merged in another file.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17243  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 12:59:25 +00:00 
						 
				 
			
				
					
						
							
							
								Luigi Rizzo 
							
						 
					 
					
						
						
							
						
						ec67c650ad 
					 
					
						
						
							
							some fields are const  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17226  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 10:57:31 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						95de51526a 
					 
					
						
						
							
							Added information on call-limit and realtime  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17209  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 08:01:46 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						a0b9439bee 
					 
					
						
						
							
							Clarify syntax of new manager events that reports a status.  
						
						... 
						
						
						
						We do not longer approve "ThisEventOn" and "ThisEventOff" named events,
they need to be named "ThisEvent" with a status header showing the
current status.
(Approved by Mark)
Old events won't be changed to keep backwards compatibility,
until we have a revision plan for the AMI.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17199  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 07:59:02 +00:00 
						 
				 
			
				
					
						
							
							
								Mark Spencer 
							
						 
					 
					
						
						
							
						
						f11fb65262 
					 
					
						
						
							
							Does nobody know how to write a linked list properly? I mean seriously!  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17183  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-04 05:53:48 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						bf4b484e62 
					 
					
						
						
							
							Clarify the need for numeric parking positions (imported from 1.2)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17152  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 20:45:45 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						878c88f899 
					 
					
						
						
							
							Add tag to NOTIFY headers (imported from 1.2)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17151  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 20:40:08 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						234d8cece6 
					 
					
						
						
							
							updating cleancount to coincide with 17130  
						
						... 
						
						
						
						didnt know you are supposed to update that. now i do
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17149  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 20:23:46 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						3112b3b49f 
					 
					
						
						
							
							list word cant be used with g++ and causes problems  
						
						... 
						
						
						
						with h323.  patch from bug 6446, renames list to chan_list
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17130  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 19:42:26 +00:00 
						 
				 
			
				
					
						
							
							
								Christian Richter 
							
						 
					 
					
						
						
							
						
						a096fbd87d 
					 
					
						
						
							
							* removed unneeded bc->state field  
						
						... 
						
						
						
						* added statefullness for bchannel activation/deactivation
* fixed a lot PCM bridging issues
* some debugging logs are now on a higher loglevel
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17128  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 19:17:59 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						1b6d24a09e 
					 
					
						
						
							
							Add misdn.txt to doxygen docs  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17106  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 18:42:58 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						141d9b693a 
					 
					
						
						
							
							- Doxygen additions  
						
						... 
						
						
						
						- Formatting fixes (read guidelines :-) )
- Removing compilation warnings
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17105  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 18:38:28 +00:00 
						 
				 
			
				
					
						
							
							
								Matt O'Gorman 
							
						 
					 
					
						
						
							
						
						319945c922 
					 
					
						
						
							
							bug updates chan_h323 to some api changes it  
						
						... 
						
						
						
						also allows for it to compile once more patch
taken from 6446 with minor mods, similar bugs 6521
and 6560
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17104  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 18:36:30 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						5fbe9f80e8 
					 
					
						
						
							
							Don't add hangup cause on non-final responses. (Imported from 1.2)  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17075  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 17:52:11 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						67b460d43c 
					 
					
						
						
							
							Issue  #6848  - Accept MWI subscriptions with no Accept: header  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17050  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 10:50:56 +00:00 
						 
				 
			
				
					
						
							
							
								Olle Johansson 
							
						 
					 
					
						
						
							
						
						f4da579201 
					 
					
						
						
							
							Include new README files in index  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17030  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 07:44:29 +00:00 
						 
				 
			
				
					
						
							
							
								Tilghman Lesher 
							
						 
					 
					
						
						
							
						
						5c1268c29d 
					 
					
						
						
							
							Bug 6861 - Routine should use the specified writetimeout, rather than the default  
						
						... 
						
						
						
						git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17029  65c4cc65-6c06-0410-ace0-fbb531ad65f3 
						
						
					 
					
						2006-04-03 07:34:40 +00:00