[Freeswitch-svn] [commit] r12686 - freeswitch/trunk/src/mod/endpoints/mod_sofia

FreeSWITCH SVN anthm at freeswitch.org
Fri Mar 20 10:03:46 PDT 2009


Author: anthm
Date: Fri Mar 20 12:03:46 2009
New Revision: 12686

Log:
fix regression

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
   freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_glue.c

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	Fri Mar 20 12:03:46 2009
@@ -344,19 +344,13 @@
 				tech_pvt = switch_core_session_get_private(session);
 				channel = switch_core_session_get_channel(session);
 				if (tech_pvt) {
-
-					if (status >= 300) {
-						sofia_set_flag_locked(tech_pvt, TFLAG_BYE);
-					}
-
 					switch_mutex_lock(tech_pvt->sofia_mutex);
 					locked = 1;										
 				} else {
 					switch_core_session_rwunlock(session);
 					return;
 				}
-				
-				
+
 				if (status >= 180 && !*sofia_private->auth_gateway_name) {
 					const char *gwname = switch_channel_get_variable(channel, "sip_use_gateway");
 					if (!switch_strlen_zero(gwname)) {
@@ -3338,6 +3332,7 @@
 			tech_pvt->q850_cause = SWITCH_CAUSE_MANDATORY_IE_MISSING;
 		}
 	case nua_callstate_terminated:
+		sofia_set_flag_locked(tech_pvt, TFLAG_BYE);
 		if (sofia_test_flag(tech_pvt, TFLAG_NOHUP)) {
 			sofia_clear_flag_locked(tech_pvt, TFLAG_NOHUP);
 		} else if (switch_channel_up(channel)) {

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_glue.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_glue.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_glue.c	Fri Mar 20 12:03:46 2009
@@ -2375,6 +2375,7 @@
 		return SWITCH_STATUS_SUCCESS;
 	}
 
+
 	return SWITCH_STATUS_FALSE;
 }
 



More information about the Freeswitch-svn mailing list