1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-05 10:08:08 +00:00

Merge pull request in FS/freeswitch from ~LAZEDO/freeswitch:FS-10592-1 to master

* commit 'aea2db043e376b7d55087416ce0670ce70cba7f0':
  FS-10592: [mod_sofia] add sofia_profile_url to b channel
This commit is contained in:
Brian West 2017-08-24 20:07:19 +00:00
commit fd3c2fd3bf

@ -1228,6 +1228,7 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session)
if (!switch_channel_get_variable(channel, "sofia_profile_name")) { if (!switch_channel_get_variable(channel, "sofia_profile_name")) {
switch_channel_set_variable(channel, "sofia_profile_name", tech_pvt->profile->name); switch_channel_set_variable(channel, "sofia_profile_name", tech_pvt->profile->name);
switch_channel_set_variable(channel, "recovery_profile_name", tech_pvt->profile->name); switch_channel_set_variable(channel, "recovery_profile_name", tech_pvt->profile->name);
switch_channel_set_variable(channel, "sofia_profile_url", tech_pvt->profile->url);
} }
extra_headers = sofia_glue_get_extra_headers(channel, SOFIA_SIP_HEADER_PREFIX); extra_headers = sofia_glue_get_extra_headers(channel, SOFIA_SIP_HEADER_PREFIX);