From 9ad6a089cdcca26c5fb601b8c2b62dc4d9b3a93d Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 23 Mar 2010 03:59:49 +0000 Subject: [PATCH] add sip_local_network_addr var to see the ip of the sip profile a call came in or went out on for cdr (FSCORE-562) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17073 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/mod_sofia.c | 1 + src/mod/endpoints/mod_sofia/sofia.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 64af8643cf..348cb0282d 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -3320,6 +3320,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session } } + switch_channel_set_variable_printf(nchannel, "sip_local_network_addr", "%s", profile->extsipip ? profile->extsipip : profile->sipip); switch_channel_set_variable(nchannel, "sip_profile_name", profile_name); sofia_glue_get_user_host(switch_core_session_strdup(nsession, tech_pvt->dest), NULL, &tech_pvt->remote_ip); diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index f0ea91b8bb..528c31db12 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -3644,6 +3644,7 @@ static void sofia_handle_sip_r_invite(switch_core_session_t *session, int status sofia_glue_get_addr(nua_current_request(nua), network_ip, sizeof(network_ip), &network_port); + switch_channel_set_variable_printf(channel, "sip_local_network_addr", "%s", profile->extsipip ? profile->extsipip : profile->sipip); switch_channel_set_variable(channel, "sip_reply_host", network_ip); switch_channel_set_variable_printf(channel, "sip_reply_port", "%d", network_port); @@ -5909,6 +5910,7 @@ void sofia_handle_sip_i_invite(nua_t *nua, sofia_profile_t *profile, nua_handle_ channel = tech_pvt->channel = switch_core_session_get_channel(session); + switch_channel_set_variable_printf(channel, "sip_local_network_addr", "%s", profile->extsipip ? profile->extsipip : profile->sipip); switch_channel_set_variable_printf(channel, "sip_network_ip", "%s", network_ip); switch_channel_set_variable_printf(channel, "sip_network_port", "%d", network_port);