[Freeswitch-svn] [commit] r7861 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Tue Mar 11 14:36:56 EDT 2008
Author: anthm
Date: Tue Mar 11 14:36:56 2008
New Revision: 7861
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_glue.c
Log:
double sigh
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 Tue Mar 11 14:36:56 2008
@@ -915,6 +915,7 @@
char *rpid_domain = "cluecon.com", *p;
const char *priv = "off";
const char *screen = "no";
+ const char *invite_params = switch_channel_get_variable(tech_pvt->channel, "sip_invite_params");
if (switch_strlen_zero(tech_pvt->dest)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "URL Error! [%s]\n", tech_pvt->dest);
@@ -980,11 +981,11 @@
}
}
- url_str = sofia_overcome_sip_uri_weakness(session, url, tech_pvt->transport, SWITCH_TRUE,
- switch_channel_get_variable(tech_pvt->channel, "sip_invite_params"));
+ url_str = sofia_overcome_sip_uri_weakness(session, url, tech_pvt->transport, SWITCH_TRUE, invite_params);
invite_contact = sofia_overcome_sip_uri_weakness(session, tech_pvt->invite_contact, tech_pvt->transport, SWITCH_FALSE, NULL);
from_str = sofia_overcome_sip_uri_weakness(session, use_from_str, 0, SWITCH_FALSE, NULL);
- to_str = sofia_overcome_sip_uri_weakness(session, tech_pvt->dest_to, 0, SWITCH_FALSE, NULL);
+ to_str = sofia_overcome_sip_uri_weakness(session, tech_pvt->dest_to, 0, SWITCH_FALSE, invite_params);
+
/*
Does the "genius" who wanted SIP to be "text-based" so it was "easier to read" even use it now,
More information about the Freeswitch-svn
mailing list