[asterisk-commits] mjordan: branch mjordan/AST_17288 r334232 - /team/mjordan/AST_17288/1.8/chann...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 1 12:33:35 CDT 2011


Author: mjordan
Date: Thu Sep  1 12:33:31 2011
New Revision: 334232

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=334232
Log:
Check-in of fix to 484 Address incomplete for 1.8

Modified:
    team/mjordan/AST_17288/1.8/channels/chan_sip.c

Modified: team/mjordan/AST_17288/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/mjordan/AST_17288/1.8/channels/chan_sip.c?view=diff&rev=334232&r1=334231&r2=334232
==============================================================================
--- team/mjordan/AST_17288/1.8/channels/chan_sip.c (original)
+++ team/mjordan/AST_17288/1.8/channels/chan_sip.c Thu Sep  1 12:33:31 2011
@@ -20619,6 +20619,11 @@
 					if (owner)
 						ast_queue_control(p->owner, AST_CONTROL_CONGESTION);
 					break;
+				case 484: /* Address Incomplete */
+					if (owner && sipmethod != SIP_BYE) {
+						ast_queue_hangup_with_cause(p->owner, hangup_sip2cause(resp));
+					}
+					break;
 				default:
 					/* Send hangup */	
 					if (owner && sipmethod != SIP_BYE)




More information about the asterisk-commits mailing list