From 060acff2ddf989d2ef7060192c7cbbfbcd942643 Mon Sep 17 00:00:00 2001 From: Anthony Minessale <anthm@freeswitch.org> Date: Tue, 12 Feb 2013 09:21:17 -0600 Subject: [PATCH] FS-5094 --resolve --- src/mod/endpoints/mod_sofia/sofia_glue.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 85c08099df..61f069e22b 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -7090,7 +7090,21 @@ char *sofia_glue_gen_contact_str(sofia_profile_t *profile, sip_t const *sip, nua np->is_nat = NULL; } - if (np->is_nat && np->fs_path) { + if (sip->sip_record_route && sip->sip_record_route->r_url) { + char *full_contact = sip_header_as_string(nh->nh_home, (void *) contact); + char *route = sofia_glue_strip_uri(sip_header_as_string(nh->nh_home, (void *) sip->sip_record_route)); + char *full_contact_dup; + char *route_encoded; + int route_encoded_len; + full_contact_dup = sofia_glue_get_url_from_contact(full_contact, 1); + route_encoded_len = (int)(strlen(route) * 3) + 1; + switch_zmalloc(route_encoded, route_encoded_len); + switch_url_encode(route, route_encoded, route_encoded_len); + contact_str = switch_mprintf("%s <%s;fs_path=%s>", display, full_contact_dup, route_encoded); + free(full_contact_dup); + free(route_encoded); + } + else if (np->is_nat && np->fs_path) { char *full_contact = sip_header_as_string(nh->nh_home, (void *) contact); char *full_contact_dup; char *path_encoded;