tech_pvt->transport = gateway_ptr->register_transport;
+
/*
* Handle params, strip them off the destination and add them to the
* invite contact.
tech_pvt->dest = switch_core_session_sprintf(nsession, "sip:%s", dest);
}
+ if ((host = switch_core_session_strdup(session, tech_pvt->dest))) {
+ char *p = strchr(host, '@');
+ if (p) {
+ host = p+1;
+ } else {
+ host = NULL;
+ dest_to = NULL;
+ }
+ }
+
if (params) {
tech_pvt->invite_contact = switch_core_session_sprintf(nsession, "%s;%s", gateway_ptr->register_contact, params);
} else {