[Freeswitch-svn] [commit] r8104 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Mon Apr 14 12:10:18 EDT 2008
Author: anthm
Date: Mon Apr 14 12:10:18 2008
New Revision: 8104
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_reg.c
Log:
add sip: to nua_options call for nathack thing
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_reg.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_reg.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia_reg.c Mon Apr 14 12:10:18 2008
@@ -175,7 +175,7 @@
char *contact = NULL;
char to[128] = "";
- switch_snprintf(to, sizeof(to), "%s@%s", argv[1], argv[2]);
+ switch_snprintf(to, sizeof(to), "sip:%s@%s", argv[1], argv[2]);
contact = sofia_glue_get_url_from_contact(argv[3], 1);
nh = nua_handle(profile->nua, NULL, SIPTAG_FROM_STR(profile->url), SIPTAG_TO_STR(to), NUTAG_URL(contact), SIPTAG_CONTACT_STR(profile->url), TAG_END());
More information about the Freeswitch-svn
mailing list