code before declaration.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6013 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
c86155c6bf
commit
493aafa279
|
@ -1311,6 +1311,7 @@ static void voicemail_check_main(switch_core_session_t *session, char *profile_n
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!x_user) {
|
if (!x_user) {
|
||||||
|
char *xtra;
|
||||||
int ok = 1;
|
int ok = 1;
|
||||||
/* TRX added destination_number and caller_id_number from the session object
|
/* TRX added destination_number and caller_id_number from the session object
|
||||||
* ideally switch_xml_* would do this for any curl request, but that can get tricky
|
* ideally switch_xml_* would do this for any curl request, but that can get tricky
|
||||||
|
@ -1318,7 +1319,7 @@ static void voicemail_check_main(switch_core_session_t *session, char *profile_n
|
||||||
* and see what it would take to make it automagically do that
|
* and see what it would take to make it automagically do that
|
||||||
*/
|
*/
|
||||||
caller_profile = switch_channel_get_caller_profile(channel);
|
caller_profile = switch_channel_get_caller_profile(channel);
|
||||||
char *xtra = switch_mprintf("mailbox=%s&destination_number=%s&caller_id_number=%s", myid,caller_profile->destination_number,caller_profile->caller_id_number);
|
xtra = switch_mprintf("mailbox=%s&destination_number=%s&caller_id_number=%s", myid,caller_profile->destination_number,caller_profile->caller_id_number);
|
||||||
|
|
||||||
assert(xtra);
|
assert(xtra);
|
||||||
|
|
||||||
|
|
|
@ -2073,9 +2073,10 @@ void sofia_handle_sip_i_invite(nua_t *nua, sofia_profile_t *profile, nua_handle_
|
||||||
|
|
||||||
if (sip->sip_request->rq_url) {
|
if (sip->sip_request->rq_url) {
|
||||||
sofia_gateway_t *gateway;
|
sofia_gateway_t *gateway;
|
||||||
|
char *from_key;
|
||||||
char *user = (char *) sip->sip_request->rq_url->url_user;
|
char *user = (char *) sip->sip_request->rq_url->url_user;
|
||||||
check_decode(user, session);
|
check_decode(user, session);
|
||||||
char *from_key = switch_core_session_sprintf(session, "sip:%s@%s",
|
from_key = switch_core_session_sprintf(session, "sip:%s@%s",
|
||||||
user,
|
user,
|
||||||
(char *) sip->sip_request->rq_url->url_host);
|
(char *) sip->sip_request->rq_url->url_host);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue