[Freeswitch-svn] [commit] r4862 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Thu Apr 5 13:52:35 EDT 2007
Author: anthm
Date: Thu Apr 5 13:52:35 2007
New Revision: 4862
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
Log:
update
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 Thu Apr 5 13:52:35 2007
@@ -982,16 +982,18 @@
nua_respond(nh, SIP_488_NOT_ACCEPTABLE, TAG_END());
}
} else {
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Invite with no SDP activating no-media-mode\n");
- switch_channel_set_variable(channel, SWITCH_ENDPOINT_DISPOSITION_VARIABLE, "RECEIVED_NOSDP");
-
- switch_set_flag(tech_pvt, TFLAG_LATE_NEGOTIATION);
- switch_set_flag_locked(tech_pvt, TFLAG_NOMEDIA);
- switch_channel_set_flag(channel, CF_NOMEDIA);
- switch_channel_set_state(channel, CS_INIT);
- switch_set_flag_locked(tech_pvt, TFLAG_READY);
- switch_core_session_thread_launch(session);
- goto done;
+ if (switch_test_flag(tech_pvt, TFLAG_NOMEDIA)) {
+ goto done;
+ } else {
+ switch_channel_set_variable(channel, SWITCH_ENDPOINT_DISPOSITION_VARIABLE, "RECEIVED_NOSDP");
+ switch_set_flag(tech_pvt, TFLAG_LATE_NEGOTIATION);
+ sofia_glue_set_local_sdp(tech_pvt, NULL, 0, NULL, 0);
+
+ nua_respond(tech_pvt->nh, SIP_200_OK,
+ SIPTAG_CONTACT_STR(tech_pvt->profile->url),
+ SOATAG_USER_SDP_STR(tech_pvt->local_sdp_str), SOATAG_AUDIO_AUX("cn telephone-event"), NUTAG_INCLUDE_EXTRA_SDP(1), TAG_END());
+ goto done;
+ }
}
}
More information about the Freeswitch-svn
mailing list