use the correct URI on endpoints behind nat

This commit is contained in:
Brian West 2011-02-16 08:36:40 -06:00
parent 722b2ce168
commit 5f2857b8b8
1 changed files with 2 additions and 10 deletions

View File

@ -190,16 +190,8 @@ switch_status_t sofia_presence_chat_send(const char *proto, const char *from, co
dup_dest = strdup(dst->contact);
if (switch_stristr("fs_path", dst->contact)) {
const char *s;
if ((s = switch_stristr("fs_path=", dst->contact))) {
s += 8;
}
if (s) {
remote_host = strdup(s);
switch_url_decode(remote_host);
}
if (dst->route_uri) {
remote_host = strdup(dst->route_uri);
if (!zstr(remote_host)) {
switch_split_user_domain(remote_host, NULL, &remote_ip);
}