mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	don't do native/remote bridging if a framehook is active on the channel
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325537 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -65,6 +65,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | ||||
| #include "asterisk/aoc.h" | ||||
| #include "asterisk/ccss.h" | ||||
| #include "asterisk/indications.h" | ||||
| #include "asterisk/framehook.h" | ||||
|  | ||||
| /*** DOCUMENTATION | ||||
| 	<application name="Dial" language="en_US"> | ||||
| @@ -631,7 +632,8 @@ END_OPTIONS ); | ||||
| 	OPT_CALLER_HANGUP | OPT_CALLEE_TRANSFER | OPT_CALLER_TRANSFER | \ | ||||
| 	OPT_CALLEE_MONITOR | OPT_CALLER_MONITOR | OPT_CALLEE_PARK |  \ | ||||
| 	OPT_CALLER_PARK | OPT_ANNOUNCE | OPT_CALLEE_MACRO | OPT_CALLEE_GOSUB) && \ | ||||
| 	!chan->audiohooks && !peer->audiohooks) | ||||
| 	!chan->audiohooks && !peer->audiohooks && \ | ||||
| 	ast_framehook_list_is_empty(chan->framehooks) && ast_framehook_list_is_empty(peer->framehooks)) | ||||
|  | ||||
| /* | ||||
|  * The list of active channels | ||||
|   | ||||
		Reference in New Issue
	
	Block a user